@charset "utf-8";
/* CSS Document */

  /* Estilos generales y reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
        }
        
        /* Header styles - Fondo negro y menú dorado */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background-color: #000000; /* Fondo negro */
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .logo img {
    height: 100px; /* Ajusta según el tamaño de tu logo */
    width: auto; /* Mantiene la proporción */
}

.features-content h2 {
    color: #000000 !important; /* Negro puro */
    /* Si usas el !important es para sobrescribir otros estilos */
}

        
		
		/* Contenedor principal */
/* Contenedor principal - Eliminamos todo espacio entre items */
.features-grid {
    display: grid;
    gap: 0; /* Eliminamos completamente el espacio entre items */
    max-width: 800px;
    margin: 0 auto;
}

/* Items supercompactos */
.feature-item {
    display: flex;
    align-items: center;
    gap: 5px; /* Espacio mínimo entre icono y texto */
    padding: 8px 0; /* Solo padding vertical mínimo */
    border-bottom: 1px solid #f0f0f0; /* Línea divisora sutil */
}

/* Iconos compactos */
.feature-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

/* Texto compacto */
.feature-text h3 {
    margin-bottom: 2px; /* Espacio mínimo entre título y párrafo */
    font-size: 1.05rem;
    color: #333;
}

.feature-text p {
    font-size: 0.85rem;
    line-height: 1.3;
    color: #666;
    margin: 0; /* Eliminamos márgenes del párrafo */
}

/* Eliminamos el borde del último item */
.feature-item:last-child {
    border-bottom: none;
}
		
		
		
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #c6a24f; /* Color dorado para el menú */
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: #e6c875; /* Dorado más claro al hover */
        }
        
        /* Hero Slider Section */
        .hero {
            display: flex;
            height: 500px;
            background-color: #0b0b0b;
        }
        
.hero-text {
    position: relative;
    z-index: 2;
    background-color: rgba(11, 11, 11, 0.85);
    padding: 40px;
    max-width: 600px; /* Ajusta este valor */
    border-radius: 8px;
}
		
		
		
        .hero-text h1 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .hero-text p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 500px;
        }
        
        .promo-text {
            margin-bottom: 20px;
            font-weight: bold;
            color: #c6a24f; /* Color dorado para el texto promocional */
        }
        
        .hero-slider {
            flex: 1;
            position: relative;
            overflow: hidden;
        }
        
        .slider-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        
        .slider-image.active {
            opacity: 1;
        }
        
        /* Botones - Usamos el dorado para mantener consistencia */
       .btn {
    display: inline-block;
    padding: 10px 25px; /* Reducido el padding para hacerlo más estrecho */
    background-color: #c6a24f; /* Fondo dorado */
    color: #000000; /* Texto negro */
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px; /* Esquinas completamente redondeadas */
    transition: all 0.3s;
    font-size: 0.9rem; /* Tamaño de fuente ligeramente más pequeño */
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    letter-spacing: 0.5px; /* Espaciado entre letras para mejor legibilidad */
    white-space: nowrap; /* Evita que el texto se divida en varias líneas */
	max-width: 220px; /* Ancho máximo permitido */
    width: auto; /* Se ajusta al contenido pero no pasa del máximo */
}

.btn:hover {
    background-color: #d4b15f; /* Dorado más claro al pasar el mouse */
    color: #000; /* Mantenemos texto negro en hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
        
        /* Sección de beneficios */
        .benefits {
            padding: 60px 5%;
            text-align: center;
        }
        
        .benefits h2 {
            font-size: 32px;
            margin-bottom: 40px;
            color: #2c3e50;
        }
        
        .benefits-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }
        
        .benefit-item {
            flex: 1;
            min-width: 250px;
            margin: 15px;
            padding: 30px;
            background-color: #f9f9f9;
            border-radius: 8px;
        }
        
        .benefit-item h3 {
            color: #c6a24f; /* Color dorado para los títulos */
            margin-bottom: 15px;
        }
        
        /* Footer */
        footer {
            background-color: #000000; /* Fondo negro como el header */
            color: white;
            text-align: center;
            padding: 20px;
        }
        
        footer a {
            color: #c6a24f; /* Color dorado para el enlace */
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                height: auto;
            }
            
            .hero-text {
                order: 2;
                padding: 40px 20px;
            }
            
            .hero-slider {
                order: 1;
                height: 300px;
            }
            
            nav ul {
                display: none;
            }
            
            .menu-toggle {
                display: block !important;
                color: #c6a24f; /* Color dorado para el ícono del menú */
                font-size: 24px;
                cursor: pointer;
            }
            
            .benefits-container {
                flex-direction: column;
            }
        }
		
		
		
		
		/* Menú para desktop (siempre visible) */
.menu {
    display: flex;
    list-style: none;
}

/* Botón hamburguesa (oculto en desktop) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #c6a24f;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive: Mobile/Tablet */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #000;
        padding: 20px;
        width: 200px;
    }
    
    .menu.active {
        display: flex;
    }
}


.features-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

.features-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.features-image {
    flex: 1;
}

.features-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.features-content {
    flex: 1;
}

.features-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
}

.features-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #c6a24f;
    margin: 15px 0;
}

.intro-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-item {
    margin-bottom: 30px;
}

.feature-item h3 {
    color: #c6a24f;
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    line-height: 1.5;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.whatsapp-btn, .contact-btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
}

.contact-btn {
    background-color: #2c3e50;
    color: white;
}

.contact-btn:hover {
    background-color: #1a252f;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
    }
    
    .features-image {
    flex: 1.5; /* Ocupa más espacio que el texto (antes era 1) */
    min-width: 50%; /* Ancho mínimo garantizado */
    position: relative;
}

.features-image img {
    width: 100%;
    height: 100%; /* Estira la imagen al 100% del contenedor */
    object-fit: cover; /* Cubre el área sin deformarse */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

/* Efecto hover opcional */
.features-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
    
    .contact-buttons {
        flex-direction: column;
    }
}


/* ===== SECCIÓN FEATURES - VERSIÓN OPTIMIZADA ===== */
.features-section {
    padding: 60px 5%;
    background-color: #f9f9f9;
}

.features-container {
    display: flex;
    align-items: flex-start; /* Cambiado de center para mejor alineación */
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px; /* Reducido de 50px */
}

/* --- Encabezado --- */
.features-header {
    margin-bottom: 15px;
}

.features-header h2 {
    font-size: 28px;
    color: #000;
    margin-bottom: 5px; /* Eliminado !important */
    line-height: 1.3;
}

.features-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #c6a24f;
    margin: 10px 0; /* Reducido de 15px */
}

.features-header .intro-text {
    font-size: 15px;
    color: #555;
    margin: 0 0 15px 0; /* Espacio consistente */
    line-height: 1.5;
}

/* --- Items de características --- */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    margin-bottom: 5px; /* Reducido de 30px */
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.feature-icon {
    width: 90px; /* Reducido de 80px */
    height: 90px;
    flex-shrink: 0;
}

.feature-text h3 {
    color: #c6a24f;
    font-size: 30px; /* Reducido de 20px */
    margin-bottom: 5px; /* Reducido de 10px */
}

.feature-text p {
    color: #666;
    font-size: 16px; /* Ajustado de 0.85rem */
    line-height: 1.4;
    margin: 0;
}

/* --- Botones de contacto --- */
.contact-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px; /* Reducido de 40px */
    padding-top: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .features-header h2 {
        font-size: 24px;
    }
    
    .feature-item {
        gap: 10px;
        padding: 8px 0;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
}


/* Contenedor de la imagen con overflow oculto */
/* Contenedor de icono */
.feature-icon {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Destello dorado horizontal */
.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(198, 162, 79, 0.4), /* Dorado corporativo al 40% de opacidad */
        transparent
    );
    transition: all 0.6s ease;
    z-index: 2;
}

/* Animaciones al hacer hover */
.feature-item:hover .feature-icon::before {
    left: 100%;
}

.feature-item:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(198, 162, 79, 0.5);
}

.feature-item:hover .feature-icon img {
    filter: brightness(1.08);
}

/* Imagen dentro del icono */
.feature-icon img {
    transition: all 0.4s ease;
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .feature-icon::before {
        animation: none; /* Desactiva el efecto en móviles si lo prefieres */
    }
    
    .feature-item:hover .feature-icon {
        transform: none;
    }
}




/* Estilos del comparador */
.comparator-section {
    padding: 60px 5%;
    text-align: center;
    background-color: #f9f9f9;
}

.image-comparator {
    position: relative;
    width: 100%;
    height: 500px; /* Altura fija para el contenedor */
}

.image-before, 
.image-after {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-comparator img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que cubra el espacio */
}

.image-after {
    width: 50%; /* Posición inicial del slider */
}







/* ESTILOS DEL COMPARADOR */
/* Contenedor principal */
/* COMPARADOR DE IMÁGENES - ESTILOS SIMPLIFICADOS */
.comparator-section {
    padding: 60px 5%;
    text-align: center;
    background-color: #f9f9f9;
}

.image-comparator {
    position: relative;
    max-width: 1000px;
    margin: 30px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 500px;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#img-before, #img-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#img-after {
    width: 50%;
}

#comparator-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
    -webkit-appearance: none;
}

.comparator-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    z-index: 11;
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.comparator-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #c6a24f;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: ew-resize;
    pointer-events: auto;
}

.comparator-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 12;
}

@media (max-width: 768px) {
    .image-comparator {
        height: 350px;
    }
    
    .comparator-handle::after {
        width: 30px;
        height: 30px;
    }
}






/* Sección Portafolio */
/* Actualiza estas reglas en tu CSS */
.portfolio-section {
    padding: 80px 5%; /* Añade padding lateral */
    background-color: #fff;
}

.portfolio-section .container {
    max-width: 1200px; /* Limita el ancho máximo */
    margin: 0 auto; /* Centra el contenido */
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 0 20px; /* Padding adicional si es necesario */
}
.portfolio-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.portfolio-section p {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Filtros */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 20px;
    background: #f5f5f5;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    color: #333;
}

.filter-btn:hover {
    background: #e0e0e0;
}

.filter-btn.active {
    background: #c6a24f;
    color: white;
}

/* Grid de Portafolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.portfolio-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0,0,0,0.8);
    color: white;
    transition: bottom 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    bottom: 0;
}

.portfolio-overlay h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.portfolio-overlay p {
    margin: 0;
    font-size: 0.9rem;
    text-align: left;
    color: #ddd;
}

/* Responsive */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}



/* Estilos para el modal/lightbox */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover {
    color: #c6a24f;
    transform: scale(1.2);
}

/* Efecto hover para indicar que es clickeable */
.portfolio-item {
    cursor: pointer;
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: scale(1.02);
}



/* Sección Beneficios */
/* Sección Beneficios - Versión Oscura */
.dark-benefits-section {
    padding: 80px 5%;
    background-color: #000;
    text-align: center;
    color: #fff;
}

.dark-benefits-section h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
}

.dark-benefits-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #c6a24f;
    margin: 20px auto;
}

.dark-benefits-section p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(30, 30, 30, 0.8);
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid rgba(198, 162, 79, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(198, 162, 79, 0.2);
    border-color: #c6a24f;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(198, 162, 79, 0.1);
    border-radius: 50%;
    padding: 15px;
    transition: all 0.3s;
}

.benefit-item:hover .benefit-icon {
    background-color: rgba(198, 162, 79, 0.3);
    transform: scale(1.1);
}

.benefit-icon img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1); /* Iconos blancos */
}

.benefit-item:hover .benefit-icon img {
    filter: brightness(0) sepia(1) hue-rotate(5deg) saturate(5); /* Iconos dorados al hover */
}

.benefit-item h3 {
    color: #c6a24f;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefit-item {
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .dark-benefits-section h2 {
        font-size: 1.8rem;
    }
}




/* Sección Video */
.video-section {
    padding: 80px 5% 60px;
    background-color: #c6a24f;
    color: #fff;
    text-align: center;
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent);
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.video-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(-40px);
}

.video-wrapper iframe,
.video-wrapper video {
    width: 100%;
    height: 450px;
    display: block;
    border: none;
}

.video-content {
    padding: 0 20px;
}

.video-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.video-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.btn-video {
    background-color: #000;
    color: #c6a24f;
    padding: 12px 30px;
    font-size: 1rem;
    border: 2px solid #000;
    transition: all 0.3s;
}

.btn-video:hover {
    background-color: transparent;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .video-wrapper {
        transform: translateY(-20px);
    }
    
    .video-wrapper iframe,
    .video-wrapper video {
        height: 350px;
    }
    
    .video-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .video-wrapper iframe,
    .video-wrapper video {
        height: 250px;
    }
    
    .video-content h2 {
        font-size: 1.5rem;
    }
    
    .video-content p {
        font-size: 1rem;
    }
}



/* Sección Countdown */
.countdown-section {
    padding: 80px 5%;
    background-color: #000;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/texture-dark.jpg') center/cover;
    opacity: 0.2;
    z-index: 0;
}

.countdown-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.countdown-offer h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.countdown-offer h2 span {
    color: #c6a24f;
    font-size: 2.8rem;
}

.countdown-offer p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 15px;
}

.countdown-item span:first-child {
    font-size: 3.5rem;
    font-weight: 700;
    color: #c6a24f;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Arial Black', sans-serif;
}

.countdown-item span:last-child {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2.5rem;
    color: #c6a24f;
    margin: 0 5px;
    line-height: 1;
    position: relative;
    top: -10px;
}

.btn-countdown {
    background-color: #c6a24f;
    color: #000;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 30px;
    border: 2px solid #c6a24f;
    transition: all 0.3s;
}

.btn-countdown:hover {
    background-color: transparent;
    color: #c6a24f;
}

/* Responsive */
@media (max-width: 768px) {
    .countdown-offer h2 {
        font-size: 2rem;
    }
    
    .countdown-offer h2 span {
        font-size: 2.2rem;
    }
    
    .countdown-item {
        margin: 0 10px;
    }
    
    .countdown-item span:first-child {
        font-size: 2.5rem;
    }
    
    .countdown-separator {
        font-size: 1.8rem;
        top: -5px;
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        margin: 20px 0;
    }
    
    .countdown-item {
        margin: 0 5px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.8rem;
    }
    
    .countdown-item span:last-child {
        font-size: 0.8rem;
    }
    
    .countdown-separator {
        font-size: 1.2rem;
        top: -3px;
    }
    
    .btn-countdown {
        padding: 12px 30px;
    }
}


/* Sección Formulario */
.contact-form-section {
    padding: 80px 5%;
    background-color: #c6a24f;
    color: #fff;
    position: relative;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.form-header {
    padding: 30px;
    text-align: center;
    background: rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.form-header h2 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.form-header h3 {
    font-size: 1.5rem;
    color: #c6a24f;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form {
    padding: 30px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: #fff;
    padding: 0 5px;
    font-size: 0.9rem;
    color: #666;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c6a24f;
    outline: none;
    box-shadow: 0 0 0 2px rgba(198, 162, 79, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.form-checkbox input {
    margin-right: 10px;
    accent-color: #
	}
	
	
	
	/* Sección Preguntas Frecuentes */
.faq-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.faq-section h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
}

.faq-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #c6a24f;
    margin: 20px auto;
}

.faq-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background-color: #fff;
    border: none;
    border-left: 4px solid #c6a24f;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question i {
    transition: transform 0.3s;
    color: #c6a24f;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.faq-answer p {
    padding: 0 25px 20px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

/* Estado activo */
.faq-item.active .faq-question {
    background-color: #f5f5f5;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 15px;
    }
}


/* Estilos para el botón "Subir" */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #d4af37;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
}

.back-to-top:hover {
    background-color: #b6982a;
    transform: scale(0.9) translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.back-to-top.visible:hover {
    transform: scale(1.1) translateY(-5px);
}