/* Cotizador FotoArt */
#fh5co-cotizador {
    background: #f5f5f5;
    padding: 50px 0;
}

.cotizador-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Header naranja */
.cotizador-header {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B1A 100%);
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.cotizador-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: #fff;
    transform: skewY(-2deg);
    transform-origin: top left;
}

.cotizador-header h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    position: relative;
    z-index: 1;
}

/* Precio principal */
.cotizador-precio {
    text-align: center;
    padding: 40px 20px 20px;
    background: #fff;
}

.cotizador-signo {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    vertical-align: top;
    margin-right: 5px;
}

.cotizador-valor {
    font-size: 64px;
    font-weight: 700;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Servicios con toggles */
.cotizador-servicios {
    padding: 20px;
    background: #fff;
}

.cotizador-servicio-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.cotizador-servicio-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cotizador-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.cotizador-selector-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.cotizador-selector {
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: #fff;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: all 0.3s ease;
    min-width: 80px;
}

.cotizador-selector:hover {
    border-color: #FF8C42;
}

.cotizador-selector:focus {
    outline: none;
    border-color: #FF8C42;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.cotizador-servicio-item:last-child {
    border-bottom: none;
}

.cotizador-label {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    cursor: pointer;
    flex: 1;
}

/* Toggle Switch */
.cotizador-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    cursor: pointer;
}

.cotizador-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cotizador-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.cotizador-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.cotizador-toggle input:checked + .cotizador-slider {
    background-color: #FF8C42;
}

.cotizador-toggle input:checked + .cotizador-slider:before {
    transform: translateX(26px);
}

.cotizador-toggle input:checked + .cotizador-slider::after {
    content: "ON";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.cotizador-toggle input:not(:checked) + .cotizador-slider::after {
    content: "OFF";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Resumen del presupuesto */
.cotizador-resumen {
    padding: 30px 20px;
    background: #f9f9f9;
    border-top: 2px solid #e0e0e0;
}

.cotizador-resumen h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.cotizador-resumen-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 16px;
    color: #666;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.cotizador-resumen-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0 0;
    margin-top: 20px;
    border-top: 2px solid #ddd;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Botón solicitar servicio */
.cotizador-boton {
    padding: 30px 20px;
    background: #fff;
    text-align: center;
}

.btn-cotizador {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B1A 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn-cotizador:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
    color: #fff;
    text-decoration: none;
}

.btn-cotizador:active {
    transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .cotizador-container {
        margin: 0 20px;
    }
    
    .cotizador-header h2 {
        font-size: 24px;
    }
    
    .cotizador-valor {
        font-size: 48px;
    }
    
    .cotizador-signo {
        font-size: 28px;
    }
    
    .cotizador-label {
        font-size: 16px;
    }
    
    .btn-cotizador {
        padding: 15px 30px;
        font-size: 16px;
    }
}

