/* ==========================================
   brazil.css - Brazil landing page
========================================== */

:root {
    --brazil-emerald: #127a56;
    --brazil-emerald-soft: rgba(18, 122, 86, 0.12);
    --brazil-blue: #0d4f89;
}

header.standalone-header {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.minimal-nav a {
    margin: 0 20px !important;
    font-size: 0.9rem !important;
}

.subpage-hero {
    position: relative;
    padding: 200px 5% 100px;
    background:
        linear-gradient(rgba(13, 79, 137, 0.58), rgba(18, 122, 86, 0.74)),
        linear-gradient(rgba(24, 21, 39, 0.55), rgba(24, 21, 39, 0.68)),
        url('image/Brazil-background.jpg') center/cover no-repeat;
    text-align: center;
    border-bottom: 1px solid rgba(193, 155, 84, 0.75);
}

.subpage-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 215, 0, 0.16) 0%, transparent 18%),
        radial-gradient(circle at 82% 16%, rgba(18, 122, 86, 0.22) 0%, transparent 22%);
    pointer-events: none;
}

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

.subpage-hero h1 {
    font-size: 3.5rem;
    color: #FFFFFF;
    margin: 20px 0;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.subpage-hero p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

.subpage-hero .badge {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

.pricing-section {
    padding: 100px 5%;
    margin: 0 auto;
    background:
        radial-gradient(circle at 12% 10%, rgba(18, 122, 86, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 88% 88%, rgba(193, 155, 84, 0.05) 0%, transparent 35%);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    align-items: stretch;
}

.pricing-card {
    flex: 1 1 300px;
    min-width: 290px;
    max-width: 380px;
    padding: 60px 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-top: 4px solid var(--brazil-emerald);
    box-shadow: 0 14px 40px rgba(18, 44, 82, 0.06);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(18, 44, 82, 0.1);
}

.premium-card {
    border-top: 4px solid var(--gold);
    border-left: 1px solid rgba(193, 155, 84, 0.3);
    border-right: 1px solid rgba(193, 155, 84, 0.3);
    border-bottom: 1px solid rgba(193, 155, 84, 0.3);
    box-shadow: 0 22px 56px rgba(193, 155, 84, 0.12);
}

.premium-card:hover {
    box-shadow: 0 30px 62px rgba(193, 155, 84, 0.16);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, #D4AF6A 100%);
    color: #fff;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(193, 155, 84, 0.3);
}

.card-header-center {
    text-align: center;
    width: 100%;
}

.pricing-card h3 {
    font-size: 1.45rem;
    color: var(--brand-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.target-audience {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    min-height: 52px;
}

.price-tag {
    margin-bottom: 34px;
    color: var(--brand-dark);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.price-tag .currency {
    font-size: 1.35rem;
    font-weight: 600;
    transform: translateY(-8px);
    margin-right: 2px;
}

.price-tag .amount {
    font-size: 3.15rem;
    font-weight: 800;
    line-height: 1;
}

.price-tag .period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 5px;
    transform: translateY(-2px);
}

.feature-list {
    list-style: none;
    margin-bottom: 34px;
    flex-grow: 1;
}

.feature-list li {
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.55;
}

.feature-list li i {
    font-size: 0.9rem;
    margin-top: 4px;
    color: var(--gold);
}

.sub-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: auto;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.legal-timeline-section {
    padding: 80px 5%;
    max-width: 1040px;
    margin: 0 auto;
}

.timeline-wrapper {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    background: linear-gradient(135deg, var(--brazil-blue) 0%, var(--brazil-emerald) 100%);
    color: #FFFFFF;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(13, 79, 137, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.step-content h4 {
    font-size: 1.15rem;
    color: var(--brand-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.alacarte-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(18,122,86,0.02) 100%);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
}

.bento-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(244, 249, 247, 0.58) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    border-top: 3px solid var(--brazil-emerald);
    box-shadow: 0 10px 30px rgba(18, 44, 82, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(18, 44, 82, 0.08);
    border-top-color: var(--gold);
}

.bento-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(30, 24, 51, 0.06);
}

.bento-header i {
    font-size: 1.2rem;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--brazil-blue) 0%, var(--brazil-emerald) 100%);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(18, 44, 82, 0.22);
}

.bento-header h3 {
    font-size: 1.3rem;
    color: var(--brand-dark);
    font-weight: 700;
}

.bento-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.bento-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px dashed rgba(30, 24, 51, 0.1);
}

.bento-list li:last-child {
    border-bottom: none;
}

.service-name {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.55;
}

.service-price {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--brand-dark);
    white-space: nowrap;
}

.service-price span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.addon-item {
    padding-left: 20px !important;
    background: var(--brazil-emerald-soft);
    border-left: 2px solid var(--brazil-emerald);
}

.addon-item .service-name {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.addon-item .service-name i {
    font-size: 0.7rem;
    margin-right: 5px;
    color: var(--brazil-emerald);
}

.addon-item .service-price {
    color: var(--brazil-blue);
}

.bento-note {
    margin-top: auto;
    padding-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.bento-note i {
    color: var(--gold);
    margin-top: 2px;
}

.faq-section {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.accordion {
    padding: 40px;
    border-top: 3px solid var(--brazil-emerald);
}

.accordion-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 20px;
}

.accordion-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--brand-dark);
    font-weight: 600;
}

.accordion-header::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--brazil-emerald);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-content p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 15px;
    line-height: 1.75;
}

.accordion-item input[type="radio"]:checked + .accordion-header::after {
    transform: rotate(180deg);
    color: var(--brand-dark);
}

.accordion-item input[type="radio"]:checked ~ .accordion-content {
    max-height: 520px;
}

.accordion-item input[type="radio"] {
    display: none;
}

#navbar:not(.scrolled) .nav-links a {
    color: #FFFFFF !important;
}

#navbar:not(.scrolled) .dropdown-toggle i {
    color: rgba(255, 255, 255, 0.85) !important;
}

#navbar:not(.scrolled) .logo img {
    filter: brightness(0) invert(1) !important;
    opacity: 0.95;
}

#navbar:not(.scrolled) .nav-links a:hover {
    color: rgba(255, 224, 158, 1) !important;
}

@media(max-width: 1100px) {
    .pricing-card {
        max-width: 460px;
    }
}

@media(max-width: 992px) {
    .timeline-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .pricing-grid {
        gap: 30px;
    }
}

@media(max-width: 768px) {
    .subpage-hero {
        padding: 150px 5% 60px;
    }

    .subpage-hero h1 {
        font-size: 2.45rem;
    }

    .subpage-hero p {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 50px 28px;
    }

    .price-tag .amount {
        font-size: 2.8rem;
    }

    .bento-card {
        padding: 30px 20px;
    }

    .bento-header i {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .bento-header h3 {
        font-size: 1.15rem;
    }

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

    .section-title h2 {
        font-size: 2rem;
    }

    .pricing-section,
    .legal-timeline-section,
    .alacarte-section,
    .faq-section {
        padding: 60px 5%;
    }
}

@media(max-width: 480px) {
    .subpage-hero h1 {
        font-size: 2rem;
    }

    .pricing-card {
        padding: 40px 20px;
        border-radius: 15px;
    }

    .price-tag .amount {
        font-size: 2.4rem;
    }

    .step-num {
        width: 45px;
        height: 45px;
        font-size: 1.05rem;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .bento-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .service-price {
        align-self: flex-start;
    }

    .addon-item {
        padding-left: 10px !important;
    }
}

@media (max-width: 400px) {
    .btn-primary,
    .btn-secondary {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}
