/* ============================================
   ACCESOHIK LATAM - ESTILOS COMPLETOS
   ============================================ */

/* Variables */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --secondary: #1d3557;
    --accent: #457b9d;
    --light: #f1faee;
    --dark: #1d3557;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --success: #2a9d8f;
    --warning: #e9c46a;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utilidades */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVEGACIÓN
   ============================================ */

.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
}

.logo span {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

.nav-menu a:hover {
    color: var(--primary);
    background: var(--gray-light);
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-sm) !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

/* ============================================
   BOTONES
   ============================================ */

.btn-primary,
.btn-secondary,
.btn-whatsapp,
.btn-service,
.btn-pricing {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

/* HERO CTA - WHATSAPP */
.btn-primary {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-primary:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

/* BOTÓN SECUNDARIO */
.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.35);
    color: var(--white);
    transform: translateY(-2px);
}

/* CTA FINAL WHATSAPP */
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    font-size: 1.1rem;
    padding: 16px 40px;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

/* BOTONES DE SERVICIO */
.btn-service {
    background: var(--secondary);
    color: var(--white);
    width: 100%;
    margin-top: auto;
    font-weight: 700;
}

.btn-service:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(29, 53, 87, 0.18);
}

/* BOTONES PRECIOS */
.btn-pricing {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    width: 100%;
    margin-top: auto;
    font-weight: 700;
}

.btn-pricing:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* PLAN POPULAR */
.btn-popular {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-popular:hover {
    background: var(--primary-dark);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto 24px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 24px 0 32px;
}

.hero-stats span {
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-trust {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-top: 16px;
}

/* ============================================
   SECCIONES GENERALES
   ============================================ */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

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

/* ============================================
   PROBLEMAS
   ============================================ */
.problems {
    background: var(--light);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.card p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================
   CÓMO FUNCIONA
   ============================================ */
.how-it-works {
    background: var(--white);
}

.steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-top: 48px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.step h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.step p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary);
    align-self: center;
    padding: 0 8px;
    font-weight: 700;
}

.steps-note {
    background: var(--light);
    border-left: 4px solid var(--success);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.steps-note p {
    color: var(--dark);
    margin: 0;
}

/* ============================================
   SERVICIOS
   ============================================ */

.services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

/* CARD */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* FEATURED */
.service-card.featured {
    border: 2px solid var(--primary);
}

/* COMBO CARD */
.combo-card {
    transform: scale(1.02);
}

.combo-card:hover {
    transform: scale(1.02) translateY(-6px);
}

/* HEADER */
.service-header {
    padding: 32px 32px 24px;
    background: linear-gradient(
        135deg,
        var(--secondary) 0%,
        var(--accent) 100%
    );
    color: var(--white);
}

.service-card.featured .service-header {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
    );
}

/* BADGE */
.service-badge {
    display: inline-block;
    background: #ffd54f;
    color: #222;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
    margin-bottom: 16px;
    letter-spacing: .5px;
}

/* TITLE */
.service-header h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* SUBTITLE */
.service-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.92;
    margin-bottom: 20px;
}

/* PRICE */
.service-price {
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1;
}

/* FEATURES */
.service-features {
    padding: 28px 32px;
    flex-grow: 1;
}

.service-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--dark);
    font-size: 0.96rem;
    line-height: 1.5;
}

.service-features li:last-child {
    border-bottom: none;
}

/* CTA BUTTON */
.btn-service {
    display: block;
    margin: 0 24px 24px;
    padding: 16px 20px;
    border-radius: 12px;
    background: var(--secondary);
    color: var(--white);
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.service-card.featured .btn-service {
    background: var(--primary-dark);
}

.combo-card .btn-service {
    background: var(--secondary);
}

.btn-service:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .services-grid {
        gap: 20px;
    }

    .service-header {
        padding: 28px 24px 22px;
    }

    .service-features {
        padding: 24px;
    }

    .service-price {
        font-size: 2.3rem;
    }

    .btn-service {
        margin: 0 20px 20px;
    }
}

/* ============================================
   CONFIANZA
   ============================================ */
.trust {
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.trust-item {
    text-align: center;
    padding: 32px 24px;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.trust-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.trust-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   TESTIMONIOS
   ============================================ */
.testimonials {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
}

.testimonials h2 {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.2);
}

.stars {
    color: var(--warning);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* ============================================
   COMPATIBLES
   ============================================ */
.compatible {
    background: var(--light);
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.brand-item {
    background: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.brand-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.compatible-note {
    text-align: center;
    margin-top: 32px;
    color: var(--gray);
}

.compatible-note a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================
/* ============================================
   CTA FINAL
   ============================================ */

.cta{
    background: linear-gradient(
        135deg,
        var(--secondary) 0%,
        #1e3a5f 100%
    );
    color: var(--white);
    text-align: center;
}

.cta h2{
    color: var(--white);
    margin-bottom: 18px;
}

.cta p{
    max-width: 700px;
    margin: 0 auto;
    opacity: .95;
    line-height: 1.7;
}

/* BOTÓN WHATSAPP */
.btn-whatsapp{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-top: 32px;
    padding: 18px 34px;

    background: #25D366;
    color: #fff;

    border-radius: 14px;
    text-decoration: none;

    font-size: 1.05rem;
    font-weight: 700;

    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);

    transition: all .3s ease;
}

.btn-whatsapp:hover{
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}

/* TEXTO INFERIOR */
.cta-small{
    margin-top: 18px !important;
    font-size: .95rem;
    opacity: .9;
}

/* ============================================
   FAQ PREVIEW
   ============================================ */
.faq-preview {
    background: var(--white);
    padding-bottom: 80px;
}

.faq-list {
    max-width: 800px;
    margin: 48px auto;
}

.faq-list details {
    background: var(--light);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.faq-list summary {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-list summary:hover {
    background: var(--gray-light);
}

.faq-list details p {
    padding: 0 24px 20px;
    color: var(--gray);
    line-height: 1.7;
}

.faq-preview .btn-secondary {
    display: block;
    width: fit-content;
    margin: 32px auto 0;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--primary);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
}

/* ============================================
   PAGE HEADER (para páginas internas)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 60px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing {
    background: var(--light);
    padding: 60px 0 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 0 0 var(--radius-sm);
}

.pricing-header {
    padding: 32px 32px 24px;
    text-align: center;
    background: var(--white);
}

.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.pricing-price {
    margin-bottom: 12px;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    color: var(--primary);
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

.pricing-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features {
    padding: 0 32px 24px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--dark);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.disabled {
    color: var(--gray);
    opacity: 0.5;
}

/* Payment Methods */
.payment-methods {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.payment-methods h3 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 1.4rem;
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.payment-item {
    text-align: center;
    padding: 20px;
    border-radius: var(--radius-sm);
    background: var(--light);
    border: 1px solid var(--gray-light);
}

.payment-flag {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.payment-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--dark);
}

.payment-item p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Guarantee Box */
.guarantee-box {
    background: linear-gradient(135deg, var(--success) 0%, #21867a 100%);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    margin-bottom: 40px;
    text-align: center;
}

.guarantee-box h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.guarantee-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing FAQ */
.pricing-faq {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-faq h3 {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-faq details {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.pricing-faq summary {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.pricing-faq summary:hover {
    background: var(--gray-light);
}

.pricing-faq details p {
    padding: 0 24px 20px;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-full {
    background: var(--light);
    padding: 60px 0 80px;
}

.faq-category {
    margin-bottom: 48px;
}

.faq-category h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.faq-category details {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-light);
    box-shadow: var(--shadow);
}

.faq-category summary {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-category summary:hover {
    background: var(--gray-light);
}

.faq-answer {
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq-answer ul,
.faq-answer ol {
    margin: 12px 0 12px 24px;
    color: var(--gray);
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 48px;
}

.faq-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.faq-cta p {
    margin-bottom: 24px;
    opacity: 0.9;
}

/* ============================================
   LEGAL PAGE
   ============================================ */
.legal-content {
    background: var(--white);
    padding: 60px 0 80px;
}

.legal-notice-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: var(--radius-sm);
    padding: 24px;
    margin-bottom: 40px;
}

.legal-notice-box h3 {
    color: #856404;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.legal-notice-box p {
    color: #856404;
    line-height: 1.6;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    text-align: left;
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.legal-section p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-section ul {
    margin: 12px 0 12px 24px;
    color: var(--gray);
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-section a {
    color: var(--primary);
    font-weight: 500;
}

.legal-date {
    text-align: right;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-light);
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog {
    background: var(--light);
    padding: 60px 0 80px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 160px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-content {
    padding: 24px;
}

.blog-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--dark);
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--primary);
}

.blog-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--gray);
    opacity: 0.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 8px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 8px;
    }

    .hero-stats span {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .step {
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }

    section {
        padding: 60px 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        width: 100%;
        text-align: center;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .payments-grid {
        grid-template-columns: 1fr 1fr;
    }

    .guarantee-box,
    .faq-cta {
        padding: 24px;
    }
}
