/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f172a;      /* Azul oscuro principal */
    --secondary-color: #2563eb;    /* Azul medio / secundario */
    --accent-color: #1e40af;       /* Azul suave hover */
    --dark-color: #0f172a;         /* Para consistencia */
    --light-color: #f8fafc;        /* Gris claro / fondo - MÁS CLARO */
    --light-bg: #f1f5f9;          /* Fondo gris para secciones */
    --gray-color: #333333;         /* Texto principal */
    --light-gray: #e2e8f0;         /* Gris más claro */
    --text-light: #ffffff;         /* Texto blanco */
    --success-color: #10b981;      /* Verde */
    --warning-color: #f59e0b;      /* Ámbar */
    --danger-color: #ef4444;       /* Rojo */
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--gray-color);
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto 50px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-plan {
    background-color: var(--secondary-color);
    color: var(--text-light);
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-plan:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Header con efecto scroll */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(15, 23, 42, 0.9); /* Translúcido al inicio */
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo-title {
    color: var(--primary-color);
}

.header.scrolled .logo-subtitle {
    color: var(--secondary-color);
}

.header.scrolled .nav-menu a {
    color: var(--dark-color);
}

.header.scrolled .nav-menu a:hover {
    color: var(--secondary-color);
}

.header.scrolled .hamburger .bar {
    background-color: var(--dark-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo Styles */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--text-light);
    line-height: 1;
    transition: var(--transition);
}

.logo-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* Hero Section con Imagen de Fondo */
.hero {
    position: relative;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(30, 41, 59, 0.7)), 
                url('../assets/images/hero-bg.jpg') center/cover no-repeat fixed;
    color: var(--text-light);
    padding: 180px 0 120px;
    text-align: center;
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Overlay para mejor legibilidad */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.7) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 200px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Services Section - CON FONDO GRIS */
.services {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: var(--gray-color);
}

/* Estilo específico para Landing Page en servicios */
.service-card .fa-rocket {
    color: #10b981; /* Verde para diferenciar */
}

/* Centrar la última tarjeta (Landing Page) - 3, 3, 1 centrada */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .landing-page-center {
        grid-column: 2;
        justify-self: center;
        max-width: 350px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .landing-page-center {
        grid-column: 1 / span 2;
        justify-self: center;
        max-width: 350px;
    }
}

/* Nueva Sección: Auditoría Gratis - CON FONDO AZUL */
.audit-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
}

.audit-content {
    max-width: 800px;
    margin: 0 auto;
}

.audit-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.audit-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.audit-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.audit-buttons .btn-secondary {
    color: var(--text-light);
    border-color: var(--text-light);
}

.audit-buttons .btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* Plans Section - CON FONDO GRIS */
.plans {
    background-color: var(--light-bg);
}

.plans-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.plan-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-gray);
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.plan-card.popular {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 20px;
}

.plan-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.plan-description {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 10px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 30px;
    padding: 0;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

.plan-features i {
    color: var(--success-color);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Contenedor para la bolsa de horas horizontal */
.hours-container {
    margin-top: 20px;
    width: 100%;
}

.hours-card-horizontal {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 2px dashed var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.hours-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.hours-icon-large {
    font-size: 4rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.hours-content-horizontal {
    flex-grow: 1;
}

.hours-content-horizontal h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hours-content-horizontal p {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.hours-content-horizontal strong {
    color: var(--secondary-color);
}

.hours-button {
    flex-shrink: 0;
}

.hours-button .btn {
    min-width: 200px;
}

/* Estilos específicos para la tarjeta de Landing Page */
.landing-card {
    border: 2px dashed #10b981; /* Verde para diferenciar */
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.landing-card::before {
    background: linear-gradient(90deg, #10b981, #34d399); /* Verde */
}

.landing-card .hours-icon-large {
    color: #10b981;
}

.landing-card h3 {
    color: #065f46; /* Verde oscuro */
}

.landing-card p {
    color: #047857;
}

.landing-card strong {
    color: #065f46;
    font-weight: 700;
}

.landing-card .btn-primary {
    background-color: #10b981;
}

.landing-card .btn-primary:hover {
    background-color: #059669;
}

/* Botón especial para Landing Page */
.landing-btn {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 35px;
    border-radius: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.landing-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

/* Precio destacado para Landing Page */
.landing-price {
    font-size: 1.2rem;
    color: #065f46;
    font-weight: 600;
    margin-top: 15px;
    padding: 10px 15px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

/* Tranquility Section - SIN BOTONES - AHORA CON FONDO AZUL */
.tranquility {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
}

.tranquility h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.tranquility p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Section - CON FONDO AZUL */
.contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
    color: var(--text-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: var(--text-light);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-social h4 {
    margin-bottom: 15px;
    color: var(--text-light);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-gray);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
    color: var(--gray-color);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Estilos para cuando se selecciona automáticamente una opción */
#serviceSelect.autofilled {
    border-color: var(--secondary-color);
    background-color: rgba(37, 99, 235, 0.05);
    animation: highlightSelect 1.5s ease-in-out;
}

@keyframes highlightSelect {
    0% {
        background-color: rgba(37, 99, 235, 0.1);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    50% {
        background-color: rgba(37, 99, 235, 0.15);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    }
    100% {
        background-color: rgba(37, 99, 235, 0.05);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

/* ============================================
   FOOTER COMPACTO
   ============================================ */

/* Footer principal */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px 0 20px;
    width: 100%;
    margin-top: 0;
}

/* Contenedor principal del footer */
.footer-compact {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sección principal del footer */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    width: 100%;
}

/* Logo y marca */
.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 25%;
    max-width: 300px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-brand h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
    font-weight: 600;
    line-height: 1.2;
}

.footer-brand p {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
    margin: 0;
}

/* Grid de enlaces - CORREGIDO */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    flex: 1;
    max-width: 800px;
    margin-left: auto;
}

.footer-col {
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: white;
    font-weight: 600;
    min-height: 24px;
    display: flex;
    align-items: center;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-col a:hover {
    color: white;
    transform: translateX(3px);
}

/* Parte inferior del footer */
.footer-bottom-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    width: 100%;
}

.footer-copyright p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

/* Iconos sociales del footer */
.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* ============================================
   FAQ MEJORADO - DISEÑO MODERNO Y ATRACTIVO
   ============================================ */

.faq-section {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.faq-grid {
    max-width: 1000px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    border-color: #d1d5db;
}

.faq-question-header {
    padding: 25px 30px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: white;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item.active .faq-question-header {
    background-color: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.faq-question i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}

.faq-toggle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f1f5f9;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background-color: var(--secondary-color);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: white;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer-content {
    padding: 20px 30px 30px;
}

.faq-answer-content p {
    margin-bottom: 18px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-answer-content .big-text {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.faq-answer-content ul {
    margin: 20px 0 25px 0;
    padding-left: 20px;
}

.faq-answer-content li {
    margin-bottom: 12px;
    color: #4b5563;
    line-height: 1.6;
    position: relative;
    padding-left: 12px;
}

.faq-answer-content li:before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: -5px;
    font-size: 1.2rem;
}

.faq-answer-content .highlight {
    background-color: #dbeafe;
    color: var(--secondary-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* FAQ Notes & Important */
.faq-note {
    background-color: #f0f9ff;
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.faq-note i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 3px;
}

.faq-note-text {
    background-color: #fef3c7;
    border: 1px solid #fde68a;
    padding: 18px;
    border-radius: 8px;
    margin: 25px 0;
    color: #92400e;
}

.faq-important {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.faq-important h4 {
    color: #dc2626;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-important i {
    color: #dc2626;
}

/* Plan Comparison */
.faq-plan-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.plan-compare {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.plan-compare:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.plan-compare.premium {
    border-color: var(--secondary-color);
    background-color: #f8fafc;
}

.plan-compare h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-compare h4 i {
    color: var(--secondary-color);
}

.plan-compare.premium h4 i {
    color: #f59e0b;
}

/* Benefits Grid */
.faq-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.benefit {
    text-align: center;
    padding: 20px 15px;
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    background-color: #f1f5f9;
}

.benefit i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* What's Included */
.faq-whats-included {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
}

.faq-whats-included h4 {
    color: #065f46;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-whats-included h4 i {
    color: #10b981;
}

.faq-whats-included ul {
    columns: 2;
    column-gap: 40px;
}

.faq-whats-included li {
    margin-bottom: 12px;
    break-inside: avoid;
}

/* Security Layers */
.security-layers {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 25px 0;
}

.layer {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.layer-icon {
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--secondary-color);
}

.layer-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.layer-content h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* Security Stats */
.security-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin: 30px 0;
    text-align: center;
}

.stat {
    padding: 20px 15px;
    background: linear-gradient(135deg, var(--secondary-color), #1e40af);
    color: white;
    border-radius: 10px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* FAQ CTA */
.faq-cta {
    margin-top: 30px;
    text-align: center;
}

.faq-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    padding: 16px 35px;
    border-radius: 8px;
    font-weight: 600;
}

/* Responsive Design for FAQ */
@media (max-width: 992px) {
    .faq-question-header {
        padding: 22px 25px;
    }
    
    .faq-question {
        font-size: 1.15rem;
    }
    
    .faq-answer-content {
        padding: 15px 25px 25px;
    }
    
    .faq-plan-comparison,
    .faq-benefits {
        grid-template-columns: 1fr;
    }
    
    .faq-whats-included ul {
        columns: 1;
    }
}

@media (max-width: 768px) {
    .faq-question-header {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 1.1rem;
        gap: 12px;
    }
    
    .faq-answer-content {
        padding: 12px 20px 20px;
    }
    
    .layer {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .layer-icon {
        width: 50px;
        height: 50px;
    }
    
    .security-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .faq-question-header {
        padding: 18px 15px;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 10px 15px 15px;
    }
    
    .faq-note,
    .faq-important,
    .faq-whats-included {
        padding: 15px;
    }
    
    .security-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .plans-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero {
        padding: 160px 0 100px;
        background-attachment: scroll;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hours-card-horizontal,
    .landing-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 35px;
    }
    
    .hours-content-horizontal h3 {
        font-size: 1.6rem;
    }
    
    .audit-content h2 {
        font-size: 2.2rem;
    }
    
    /* Footer responsive */
    .footer-main {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-logo-section {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-left: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4 {
        justify-content: center;
    }
    
    /* Centrado de la tarjeta Landing Page en tablet */
    .landing-page-center {
        grid-column: 1 / span 2;
        justify-self: center;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-menu a {
        color: var(--dark-color);
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-title {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .services-grid,
    .plans-grid-four {
        grid-template-columns: 1fr;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .hero-buttons,
    .audit-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hours-card-horizontal,
    .landing-card {
        padding: 30px 25px;
        gap: 25px;
    }
    
    .hours-content-horizontal h3 {
        font-size: 1.5rem;
    }
    
    .hours-content-horizontal p {
        font-size: 1rem;
    }
    
    .hours-icon-large {
        font-size: 3.5rem;
    }
    
    .logo-text {
        display: none;
    }
    
    .audit-content h2 {
        font-size: 1.8rem;
    }
    
    .audit-subtitle {
        font-size: 1rem;
    }
    
    .tranquility {
        padding: 50px 0;
    }
    
    .tranquility h2 {
        font-size: 1.8rem;
    }
    
    .tranquility p {
        font-size: 1rem;
    }
    
    /* Footer responsive */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom-compact {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-copyright p {
        text-align: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    /* En móvil, la tarjeta Landing Page ya está centrada por ser de 1 columna */
    .landing-page-center {
        grid-column: 1;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero {
        padding: 140px 0 80px;
        min-height: 90vh;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card,
    .plan-card,
    .contact-form {
        padding: 20px;
    }
    
    .hours-card-horizontal,
    .landing-card {
        padding: 25px 20px;
    }
    
    .hours-content-horizontal h3 {
        font-size: 1.4rem;
    }
    
    .hours-button .btn {
        width: 100%;
        min-width: auto;
    }
    
    .audit-content h2 {
        font-size: 1.6rem;
    }
    
    .tranquility {
        padding: 40px 0;
    }
    
    .tranquility h2 {
        font-size: 1.6rem;
    }
    
    /* Footer responsive */
    .footer-logo-section {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-logo-img {
        height: 35px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-col h4 {
        min-height: auto;
        margin-bottom: 10px;
        justify-content: center;
    }
    
    .footer-col a {
        font-size: 0.8rem;
    }
}

@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.8rem;
    }
}
/* Eliminar los puntos de lista en FAQ */
.faq-answer li::before,
.faq-answer-content li:before {
    content: none !important;
}