/* ------------------------- */
/* --- ESTILOS CSS AQUÍ --- */
/* ------------------------- */

:root {
    --color-bg-dark: #0d0d0d; /* Fondo más oscuro */
    --color-surface: #1a1a1a; /* Superficies más oscuras */
    --color-primary: #00e0ff; /* Azul cian brillante para destacar */
    --color-primary-light: #66e9ff; /* Azul cian claro */
    --color-accent: #25d366; /* Verde WhatsApp */
    --color-cta-highlight: #ffdd40; /* Amarillo para la oferta */
    --color-text: #f0f0f0; /* Texto más claro */
    --color-text-muted: #aaaaaa; /* Texto secundario */
    --border-radius: 12px;
    --shadow-deep: 0 12px 40px rgba(0, 0, 0, 0.5); /* Sombra más pronunciada */
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.2);
    --footer-bg: #101010; /* Fondo del footer */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--color-bg-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden; /* Evita el scroll horizontal */
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* --- Header --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(26, 26, 26, 0.8); /* Usar --color-surface con transparencia */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-light);
}

.logo {
    font-size: 2rem; /* Logo más grande */
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    text-shadow: 0 0 10px rgba(0, 224, 255, 0.5); /* Sombra para el logo */
}

.logo i {
    margin-right: 0.8rem; /* Más espacio */
    font-size: 1.8rem; /* Icono un poco más pequeño que el texto */
}

.nav-link {
    font-size: 1.1rem;
    color: var(--color-text-muted); /* Color más suave */
    text-decoration: none;
    margin-left: 2.5rem; /* Más espacio entre links */
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary-light);
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 90vh; /* Mayor altura */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    background-color: var(--color-surface); /* Fallback */
    padding: 2rem; /* Padding para móviles */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) grayscale(20%); /* Más oscuro y con un poco de escala de grises */
    transition: transform 0.5s ease;
}

.hero-section:hover .hero-background {
    transform: scale(1.03); /* Efecto zoom sutil al pasar el mouse */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px; /* Más ancho */
    padding: 3rem; /* Más padding */
    background-color: rgba(0, 0, 0, 0.6); /* Fondo más oscuro y visible */
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-deep); /* Sombra más fuerte */
    animation: fadeInScale 1s ease-out forwards; /* Animación de entrada */
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


.hero-title {
    font-size: 4.2rem; /* Título más grande */
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--color-primary-light);
    text-shadow: 0 0 15px rgba(102, 233, 255, 0.7); /* Brillo */
}

.hero-subtitle {
    font-size: 1.9rem; /* Subtítulo más grande */
    font-weight: 400;
    margin-bottom: 3rem; /* Más espacio */
    color: var(--color-text);
}

/* Botones de Llamada a la Acción (CTA) */
.hero-cta-btn, .cta-inline-btn, .offer-cta {
    background: linear-gradient(45deg, var(--color-accent) 0%, #1a9e4b 100%); /* Gradiente verde */
    color: #fff;
    padding: 1.2rem 3rem; /* Más padding */
    border-radius: 50px;
    font-size: 1.3rem; /* Más grande */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); /* Sombra más pronunciada */
    display: inline-flex;
    align-items: center;
    gap: 1rem; /* Más espacio entre icono y texto */
    border: none;
    cursor: pointer;
    text-transform: uppercase; /* Mayúsculas */
    letter-spacing: 0.05em; /* Espaciado de letras */
}

.hero-cta-btn:hover, .cta-inline-btn:hover, .offer-cta:hover {
    background: linear-gradient(45deg, #20b857 0%, var(--color-accent) 100%); /* Cambio de gradiente */
    transform: translateY(-5px) scale(1.02); /* Efecto de elevación */
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7); /* Sombra aún más fuerte */
}

.cta-inline-btn {
    background: linear-gradient(45deg, var(--color-primary) 0%, #0088cc 100%); /* Otro gradiente para inline CTAs */
    box-shadow: 0 8px 25px rgba(0, 224, 255, 0.5);
    margin-top: 1.5rem;
}

.cta-inline-btn:hover {
    background: linear-gradient(45deg, #0088cc 0%, var(--color-primary) 100%);
    box-shadow: 0 12px 30px rgba(0, 224, 255, 0.7);
}


/* --- Secciones Generales --- */
.section-title {
    font-size: 3rem; /* Título de sección más grande */
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-top: 5rem; /* Más margen arriba */
    margin-bottom: 2.5rem; /* Más margen abajo */
    padding-bottom: 1.5rem; /* Más padding */
    border-bottom: 3px solid var(--color-primary-light); /* Borde más grueso y claro */
    text-shadow: 0 0 10px rgba(0, 224, 255, 0.3);
}

.content-section {
    background-color: var(--color-surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-deep);
    padding: 3rem; /* Más padding */
    margin-bottom: 3rem; /* Más margen */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-section h3 {
    font-size: 2.2rem; /* Título de subsección más grande */
    color: var(--color-primary-light); /* Color brillante */
    margin-bottom: 2rem; /* Más espacio */
    font-weight: 600;
}

.content-section p, .content-section ul {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem; /* Más espacio */
    max-width: 900px; /* Más ancho para texto */
    font-size: 1.05rem; /* Fuente ligeramente más grande */
}

/* --- Para Quién Está Dirigido (Amigable y Visual) --- */
.audience-section {
    background: linear-gradient(160deg, #1f1f1f 0%, var(--color-surface) 100%); /* Nuevo gradiente */
    border: 2px solid var(--color-primary-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.audience-section h3 {
    color: var(--color-primary);
    font-size: 2.5rem; /* Más grande */
    margin-bottom: 2.5rem;
}

.target-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%; /* Asegura que el grid ocupe el ancho completo de la sección */
}

.target-audience-card {
    background-color: #2b2b2b; /* Fondo para las tarjetas */
    padding: 1.8rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    text-align: center;
    border: 1px solid #3a3a3a;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Alinea contenido al inicio */
}

.target-audience-card:hover {
    transform: translateY(-10px) scale(1.03); /* Efecto más pronunciado */
    background-color: #333333;
    box-shadow: 0 10px 25px rgba(0, 170, 255, 0.3);
}

.target-audience-card i {
    font-size: 3.5rem; /* Icono mucho más grande */
    color: var(--color-cta-highlight); /* Color de resaltado */
    margin-bottom: 1.2rem;
    text-shadow: 0 0 15px rgba(255, 221, 64, 0.7); /* Brillo para el icono */
}

.target-audience-card h4 {
    font-size: 1.5rem; /* Título de tarjeta más grande */
    color: var(--color-primary-light);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.target-audience-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    max-width: none; /* Eliminar restricción de ancho para párrafo */
}

.audience-outro {
    font-size: 1.2rem; /* Texto de cierre más grande */
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}


/* --- Qué Vas a Obtener --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Tarjetas más grandes */
    gap: 2.5rem; /* Más espacio */
    margin-top: 2rem;
}

.benefit-card {
    background-color: #262626; /* Fondo oscuro */
    padding: 2.5rem; /* Más padding */
    border-radius: var(--border-radius);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4); /* Sombra más definida */
    text-align: left;
    border: 1px solid #3a3a3a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 170, 255, 0.3);
}

.benefit-card i {
    font-size: 3rem; /* Icono más grande */
    color: var(--color-primary);
    margin-bottom: 1.5rem; /* Más espacio */
    text-shadow: 0 0 8px rgba(0, 224, 255, 0.5);
}

.benefit-card h4 {
    font-size: 1.6rem; /* Título de beneficio más grande */
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* --- Oferta Irresistible --- */
.offer-card {
    background: linear-gradient(135deg, #1f1f1f 0%, var(--color-surface) 100%); /* Gradiente de fondo */
    border-radius: var(--border-radius);
    padding: 4rem; /* Más padding */
    box-shadow: var(--shadow-deep);
    margin-top: 2rem;
    border: 5px solid var(--color-cta-highlight); /* Borde AMARILLO FUERTE para resaltar */
    position: relative;
    overflow: hidden;
    z-index: 1; /* Asegura que el contenido esté sobre el pseudoelemento */
    animation: bounceIn 1s ease-out forwards; /* Animación de entrada para la oferta */
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.8); }
    60% { opacity: 1; transform: scale(1.05); }
    80% { transform: scale(0.97); }
    100% { transform: scale(1); }
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 60%);
    opacity: 0.05; /* Más sutil */
    animation: rotate-bg 20s linear infinite; /* Más lento */
    z-index: -1; /* Detrás del contenido */
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.offer-card .offer-header {
    margin-bottom: 2.5rem;
}

.offer-card h3 {
    font-size: 2.8rem; /* Título de oferta más grande */
    color: var(--color-primary-light);
    margin-bottom: 1.2rem;
    font-weight: 700;
    text-shadow: 0 0 12px rgba(102, 233, 255, 0.8);
}

.offer-card .offer-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.offer-card ul {
    margin-bottom: 3rem; /* Más espacio */
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.offer-card ul li {
    position: relative;
    color: var(--color-text);
    font-size: 1.2rem; /* Texto de lista más grande */
    margin-bottom: 1rem; /* Más espacio */
    padding-left: 2.5rem;
    font-weight: 400;
}

.offer-card ul li::before {
    content: '\f00c'; /* Font Awesome Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.3rem; /* Icono más grande */
    color: var(--color-accent);
    position: absolute;
    left: 0.5rem; /* Ajuste de posición */
    top: 50%;
    transform: translateY(-50%);
}

.offer-footer {
    padding-top: 2rem;
    border-top: 1px dashed #444; /* Línea de división sutil */
}

.offer-price {
    font-size: 4.5rem; /* Precio ENORME para impacto visual */
    font-weight: 900; /* Negrita extra */
    color: var(--color-cta-highlight); /* Color de resaltado (amarillo) */
    margin-bottom: 1rem;
    text-shadow: 0 0 25px rgba(255, 221, 64, 0.9), 0 0 50px rgba(255, 221, 64, 0.6); /* Brillo intenso */
    animation: pulse 2s infinite alternate; /* Animación de pulsación */
    display: inline-block; /* Para que la animación de pulsación funcione bien */
    border: 3px solid var(--color-cta-highlight); /* Borde alrededor del precio */
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    background-color: rgba(255, 221, 64, 0.1); /* Fondo sutil para el precio */
}

@keyframes pulse {
    from { transform: scale(1); box-shadow: 0 0 15px rgba(255, 221, 64, 0.7); }
    to { transform: scale(1.05); box-shadow: 0 0 30px rgba(255, 221, 64, 1); }
}

.offer-note {
    font-size: 0.95rem;
    margin-bottom: 1.5rem; /* Espacio antes del bono urgente */
}

/* Bono Urgente dentro de la Oferta */
.urgent-bonus {
    background-color: #3d3d3d; /* Fondo oscuro para el bono */
    border: 2px dashed var(--color-accent); /* Borde verde punteado */
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem; /* Espacio antes del CTA */
    animation: flashBorder 1.5s infinite alternate; /* Animación de borde parpadeante */
}

@keyframes flashBorder {
    from { border-color: var(--color-accent); box-shadow: 0 0 10px rgba(37, 211, 102, 0.5); }
    to { border-color: var(--color-primary); box-shadow: 0 0 20px rgba(0, 224, 255, 0.7); }
}

.urgent-bonus i {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.7);
}

.urgent-bonus p {
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.urgent-bonus h4 {
    font-size: 2.2rem; /* Título del bono más grande */
    color: var(--color-cta-highlight); /* Amarillo brillante */
    text-shadow: 0 0 15px rgba(255, 221, 64, 0.9);
    margin-bottom: 0.5rem;
}

.urgent-bonus .small-text-urgent {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 0.5rem;
}


.offer-cta {
    font-size: 1.5rem; /* Botón CTA de oferta más grande */
    padding: 1.5rem 4rem;
}

/* --- Bonos de Acción Rápida --- */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.bonus-card {
    background-color: #262626;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    border: 1px solid #3a3a3a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.bonus-card i {
    font-size: 3.5rem; /* Icono más grande */
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.7);
}

.bonus-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.bonus-card p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* --- Testimonios --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: var(--color-surface);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-deep);
    text-align: center;
    border: 1px solid #333;
    position: relative;
    overflow: hidden; /* Para contener la cita y que no sobresalga */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.testimonial-card i.quote-icon {
    font-size: 4rem; /* Icono más grande */
    color: var(--color-primary);
    opacity: 0.1; /* Más sutil */
    position: absolute;
    top: 0.5rem; /* Ajuste de posición */
    left: 0.5rem;
    z-index: 0; /* Detrás del texto */
}

.testimonial-card p {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: 1.8rem; /* Más espacio */
    font-size: 1.15rem; /* Texto más grande */
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-text);
    font-size: 1.1rem; /* Autor más grande */
    margin-bottom: 0.5rem;
}

.testimonial-business {
    font-size: 0.95rem;
    color: var(--color-primary-light);
}

/* --- Sección de Proyectos --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Ajuste de tamaño */
    gap: 2rem; /* Más espacio */
    margin-top: 2.5rem;
}
.project-card {
    background-color: #2b2b2b;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    border: 1px solid #3a3a3a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 170, 255, 0.3);
}
.project-card img {
    width: 100%;
    height: 220px; /* Altura ligeramente mayor para las imágenes */
    object-fit: cover;
    display: block;
}
.project-card .project-name {
    padding: 1.2rem; /* Más padding */
    font-size: 1.2rem; /* Nombre de proyecto más grande */
    font-weight: 600;
    color: var(--color-text);
}

/* --- Preguntas Frecuentes --- */
.faq-section {
    background-color: var(--color-surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-deep);
    padding: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-section h3 {
    font-size: 2.2rem;
    color: var(--color-primary-light);
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1.8rem; /* Más espacio entre items */
    border-bottom: 1px solid #333;
    padding-bottom: 1.8rem;
}
.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.faq-question {
    font-size: 1.2rem; /* Pregunta más grande */
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0; /* Más padding */
    transition: color 0.3s ease;
}
.faq-question:hover {
    color: var(--color-primary-light);
}
.faq-question .icon {
    transition: transform 0.3s ease;
    font-size: 1.1rem; /* Icono ligeramente más pequeño que el texto */
    color: var(--color-primary);
}
.faq-question.active .icon {
    transform: rotate(90deg);
}
.faq-answer {
    text-align: left;
    color: var(--color-text-muted);
    padding: 0 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-out, padding 0.6s ease-out, opacity 0.6s ease-out; /* Transición más suave */
    opacity: 0;
    font-size: 1rem; /* Tamaño de texto de respuesta */
}
.faq-answer.show {
    max-height: 1000px;
    padding: 1rem 0 1.5rem; /* Más padding al mostrar */
    opacity: 1;
}

/* --- Quiénes Somos (Tebassa) --- */
.about-tebassa-section {
    background-color: var(--color-surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-deep);
    padding: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}
.about-tebassa-section h3 {
    font-size: 2.2rem;
    color: var(--color-primary-light);
    margin-bottom: 2rem;
}
.about-tebassa-section p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* --- Contacto --- */
.contact-section {
    background-color: var(--color-surface);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-deep);
    padding: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}
.contact-section h3 {
    font-size: 2.2rem;
    color: var(--color-primary-light);
    margin-bottom: 2rem;
}
.contact-section p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}
.contact-info ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}
.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}
.contact-info li i {
    margin-right: 15px;
    color: var(--color-primary);
    font-size: 1.4rem; /* Iconos de contacto más grandes */
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    width: 65px; /* Más grande */
    height: 65px; /* Más grande */
    bottom: 35px; /* Más separado del borde */
    right: 35px; /* Más separado del borde */
    background-color: var(--color-accent); /* Verde WhatsApp */
    color: #FFF;
    border-radius: 50%; /* Redondeado perfecto */
    text-align: center;
    font-size: 32px; /* Icono más grande */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6); /* Sombra más fuerte */
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20b857; /* Verde ligeramente más oscuro al hover */
    transform: scale(1.1) translateY(-8px); /* Efecto más pronunciado */
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.8);
}

/* --- Footer --- */
.footer {
    background-color: var(--footer-bg);
    color: var(--color-text-muted);
    text-align: center;
    padding: 3rem 0; /* Más padding */
    margin-top: 5rem; /* Más margen */
    border-top: 1px solid #333;
}

.footer-social {
    margin-bottom: 2rem; /* Más espacio */
}

.footer-social a {
    color: var(--color-text-muted);
    font-size: 2.2rem; /* Iconos sociales más grandes */
    margin: 0 1rem; /* Más espacio */
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: var(--color-primary-light);
    transform: translateY(-3px);
}

.footer-text {
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.6rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .nav-link {
        margin-left: 1.5rem;
    }
    .offer-card {
        padding: 3rem;
    }
    .offer-card h3 {
        font-size: 2.4rem;
    }
    .offer-price {
        font-size: 3.5rem; /* Ajuste para tablets */
    }
    .hero-cta-btn, .cta-inline-btn, .offer-cta {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
    .offer-cta {
        font-size: 1.3rem;
        padding: 1.2rem 3rem;
    }
    .target-audience-card {
        padding: 1.5rem; /* Ajuste de padding para las tarjetas de audiencia */
    }
    .target-audience-card i {
        font-size: 3rem; /* Ajuste de icono */
    }
    .target-audience-card h4 {
        font-size: 1.3rem;
    }
    .audience-section h3 {
        font-size: 2rem;
    }
    .urgent-bonus h4 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 1rem 2%;
        gap: 1rem;
    }
    .header nav {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap; /* Permite que los links se envuelvan */
        gap: 0.8rem; /* Espacio entre links envueltos */
    }
    .nav-link {
        margin: 0; /* Elimina el margen lateral fijo */
        font-size: 1rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.3rem;
    }
    .hero-content {
        padding: 2rem;
    }
    .target-audience-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* 2 columnas en tablet */
    }
    .target-audience-card {
        flex: 1 1 calc(50% - 1rem); /* Asegura que se vean 2 por fila */
    }
    .section-title {
        font-size: 2.2rem; /* Ajuste de título de sección */
        margin-top: 4rem;
        margin-bottom: 2rem;
    }
    .content-section, .offer-card, .faq-section, .about-tebassa-section, .contact-section {
        padding: 2rem;
    }
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 25px;
        right: 25px;
    }
    .footer-social a {
        font-size: 1.8rem;
        margin: 0 0.8rem;
    }
    .offer-card h3 {
        font-size: 2rem;
    }
    .offer-card ul li {
        font-size: 1.1rem;
        padding-left: 1.8rem;
    }
    .offer-card ul li::before {
        left: 0;
    }
    .offer-price {
        font-size: 3rem; /* Ajuste para tablets */
    }
    .offer-cta {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    .benefits-grid, .bonuses-grid, .testimonials-grid, .projects-grid {
        grid-template-columns: 1fr; /* Una columna en móviles */
    }
    .urgent-bonus h4 {
        font-size: 1.5rem; /* Ajuste de tamaño de bono urgente */
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem;
        gap: 0.5rem;
    }
    .logo {
        font-size: 1.6rem;
    }
    .nav-link {
        font-size: 0.85rem;
        margin: 0 0.4rem;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-cta-btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }
    .section-title {
        font-size: 1.8rem;
        margin-top: 3rem;
        margin-bottom: 1.5rem;
    }
    .content-section h3 {
        font-size: 1.6rem;
    }
    .content-section p, .content-section ul {
        font-size: 0.95rem;
    }
    .target-audience-grid {
        grid-template-columns: 1fr; /* Una columna en móviles */
    }
    .target-audience-card {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    .target-audience-card i {
        font-size: 2.8rem;
    }
    .target-audience-card h4 {
        font-size: 1.2rem;
    }
    .audience-outro {
        font-size: 1rem;
    }

    .benefit-card, .bonus-card, .testimonial-card, .project-card, .faq-section, .about-tebassa-section, .contact-section {
        padding: 1.5rem;
    }
    .offer-card {
        padding: 2.5rem 1.5rem;
    }
    .offer-card h3 {
        font-size: 1.8rem;
    }
    .offer-card ul li {
        font-size: 1rem;
    }
    .offer-price {
        font-size: 3rem; /* Ajuste para móviles */
        padding: 0.3rem 1rem;
    }
    .offer-cta {
        font-size: 1.05rem;
        padding: 0.9rem 1.8rem;
    }
    .faq-question {
        font-size: 1rem;
        padding: 0.6rem 0;
    }
    .faq-answer {
        font-size: 0.9rem;
    }
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
    .footer-social a {
        font-size: 1.6rem;
        margin: 0 0.5rem;
    }
}
