/* ============================================================
   BelemSistemas Formaturas — Main Stylesheet
   ============================================================ */

:root {
    --primary:       #d4a017;   /* Gold premium */
    --primary-light: #f0c040;
    --accent:        #d4a017;
    --accent-dark:   #a87c10;
    --purple:        #9b59b6;
    --pink:          #e91e8c;
    --dark:          #0a0a0a;   /* Near-black body */
    --dark-soft:     #111111;
    --text:          #e2e2e2;   /* Light text */
    --muted:         #888888;
    --light:         #141414;   /* Dark surface for section-alt */
    --white:         #ffffff;

    --gradient-hero: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    --gradient-gold: linear-gradient(135deg, #f0c040 0%, #d4a017 50%, #a87c10 100%);
    --gradient-glow: linear-gradient(135deg, #d4a017 0%, #f0c040 100%);
    --shadow-lg:     0 20px 60px rgba(0,0,0,.6);
    --shadow-card:   0 4px 24px rgba(0,0,0,.45);

    --border-radius: .75rem;
    --transition:    .3s ease;
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    color: var(--text);
    background: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }

select option { background: #161616; color: var(--text); }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
}

.section-label {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .5rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.section-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,.55);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border-radius: 2rem;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(245,158,11,.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245,158,11,.55);
    color: var(--dark);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(212,160,23,.12);
    border-color: rgba(212,160,23,.6);
    color: var(--primary-light);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
}

.btn-whatsapp:hover {
    background: #1eb855;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-sm { padding: .5rem 1.25rem; font-size: .85rem; }

/* ── Header / Navbar ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(10,10,10,.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(212,160,23,.2), 0 4px 30px rgba(0,0,0,.5);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--dark);
    flex-shrink: 0;
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name span:first-child {
    font-size: .75rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: .08em;
}

.brand-name span:last-child {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,.85);
    font-size: .9rem;
    font-weight: 500;
    padding: .25rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover { color: var(--white); }

.nav-cta {
    background: var(--gradient-gold);
    color: var(--dark) !important;
    padding: .5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 700 !important;
}

.nav-cta:hover { transform: translateY(-1px); }
.nav-cta:hover::after { width: 0 !important; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .5rem;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ── Hero / Banner ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background: var(--dark);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0,0,0,.88) 40%, rgba(0,0,0,.3) 100%),
        linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 2rem;
    max-width: 1280px;
    margin: 0 auto;
    left: 0; right: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(245,158,11,.2);
    border: 1px solid rgba(245,158,11,.5);
    color: var(--accent);
    padding: .4rem 1rem;
    border-radius: 2rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    animation: fadeInDown .8s ease;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 1.25rem;
    animation: fadeInUp .9s ease .1s both;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.75);
    max-width: 500px;
    margin-bottom: 2rem;
    animation: fadeInUp .9s ease .2s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp .9s ease .3s both;
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .6rem;
    z-index: 10;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: all var(--transition);
}

.hero-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ── Section base ── */
.section {
    padding: 5rem 0;
}

.section-alt { background: var(--light); }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* ── Cards ── */
.card-grid {
    display: grid;
    gap: 1.75rem;
}

.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--dark-soft);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,160,23,.3);
    box-shadow: 0 16px 50px rgba(0,0,0,.5), 0 0 30px rgba(212,160,23,.12);
}

/* ── Services section ── */
.service-card {
    padding: 2rem;
    background: var(--dark-soft);
    border: 1px solid rgba(255,255,255,.06);
    border-top: 3px solid var(--accent);
    transition: all var(--transition);
}

.service-card:hover {
    border-color: rgba(212,160,23,.3);
    border-top-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,.5), 0 0 30px rgba(212,160,23,.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: .75rem;
    background: rgba(212,160,23,.1);
    border: 1px solid rgba(212,160,23,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
    color: var(--white);
}

.service-card p {
    font-size: .9rem;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
}

/* ── Gallery grid ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    filter: brightness(.8);
}

.gallery-item:hover img { transform: scale(1.08); filter: brightness(.5); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(212,160,23,.6) 0%, rgba(0,0,0,.3) 100%);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition);
    color: var(--white);
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── Testimonials ── */
.testimonial-card {
    padding: 2rem;
    border-radius: var(--border-radius);
    background: var(--dark-soft);
    border: 1px solid rgba(255,255,255,.07);
    position: relative;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(212,160,23,.3);
    box-shadow: 0 0 30px rgba(212,160,23,.08);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--accent);
    opacity: .3;
    line-height: 1;
}

.testimonial-stars {
    color: var(--accent);
    font-size: .9rem;
    margin-bottom: .75rem;
}

.testimonial-text {
    font-style: italic;
    color: rgba(255,255,255,.6);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.testimonial-photo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-info strong { font-size: .95rem; color: var(--white); display: block; }
.testimonial-info span { font-size: .8rem; color: var(--primary); }

/* ── Counters ── */
.counters-section {
    background: var(--dark-soft);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.counters-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 120% at 15% 50%, rgba(212,160,23,.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 120% at 85% 50%, rgba(212,160,23,.04) 0%, transparent 70%);
}

.counter-item { text-align: center; }

.counter-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: .25rem;
}

.counter-label {
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 500;
}

/* ── Events / Agenda ── */
.event-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--dark-soft);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,.07);
    border-left: 3px solid rgba(212,160,23,.5);
    transition: all var(--transition);
}

.event-card:hover {
    transform: translateX(4px);
    border-left-color: var(--accent);
    border-color: rgba(212,160,23,.3);
    box-shadow: 0 8px 40px rgba(0,0,0,.4), 0 0 20px rgba(212,160,23,.1);
}

.event-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    background: var(--gradient-glow);
    border-radius: .5rem;
    padding: .5rem;
    color: var(--white);
    text-align: center;
}

.event-date-badge .day {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.event-date-badge .month {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    opacity: .85;
}

.event-info h3 { font-size: 1rem; margin-bottom: .35rem; color: var(--white); }
.event-meta { font-size: .8rem; color: var(--muted); }
.event-meta span { margin-right: .75rem; }

.event-category-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    padding: .2rem .65rem;
    border-radius: 2rem;
    background: rgba(212,160,23,.12);
    border: 1px solid rgba(212,160,23,.25);
    color: var(--primary);
    margin-bottom: .5rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* ── About section ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.about-badge-float {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    background: var(--gradient-gold);
    color: var(--dark);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-badge-float strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.about-badge-float span {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.about-values {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-values li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255,255,255,.7);
}

.about-values li::before {
    content: '✦';
    color: var(--accent);
    font-size: .8rem;
}

/* ── Contact section ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: .75rem;
    background: rgba(212,160,23,.1);
    border: 1px solid rgba(212,160,23,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    margin-bottom: .4rem;
    letter-spacing: .03em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: .5rem;
    font-size: .95rem;
    font-family: inherit;
    color: var(--text);
    background: rgba(255,255,255,.05);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(212,160,23,.5);
    box-shadow: 0 0 0 3px rgba(212,160,23,.08);
}

.contact-form textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* ── Footer ── */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.75);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.7;
    margin-top: 1rem;
    color: rgba(255,255,255,.6);
}

.footer-col h4 {
    color: var(--white);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: .5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 24px;
    height: 2px;
    background: var(--accent);
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: .5rem; }

.footer-links a {
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent); }

.social-links {
    display: flex;
    gap: .75rem;
    margin-top: 1rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .9rem;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: .82rem;
    color: rgba(255,255,255,.4);
}

/* ── Floating WhatsApp ── */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37,211,102,.5);
    animation: pulse-green 2.5s infinite;
    transition: transform var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    animation: none;
    color: var(--white);
}

/* ── Popup ── */
.video-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s ease;
    backdrop-filter: blur(4px);
}

.video-popup.active {
    opacity: 1;
    pointer-events: auto;
}

.video-popup-inner {
    position: relative;
    width: min(820px, 92vw);
    background: #0f172a;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.06);
    transform: scale(.88) translateY(30px);
    transition: transform .45s cubic-bezier(.34,1.56,.64,1);
}

.video-popup.active .video-popup-inner {
    transform: scale(1) translateY(0);
}

.video-popup-label {
    padding: .85rem 1.25rem .7rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(90deg, rgba(212,160,23,.15) 0%, transparent 100%);
    border-bottom: 1px solid rgba(212,160,23,.15);
}

.video-popup-label span {
    color: #f0c040;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .02em;
}

.video-popup-label i { color: var(--primary); font-size: 1rem; }

.video-popup-close {
    position: absolute;
    top: .6rem;
    right: .75rem;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}

.video-popup-close:hover {
    background: rgba(239,68,68,.8);
    border-color: transparent;
    transform: scale(1.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Alert messages ── */
.alert {
    padding: 1rem 1.5rem;
    border-radius: .5rem;
    font-size: .9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.alert-success {
    background: rgba(34,197,94,.1);
    color: #4ade80;
    border-left: 4px solid #22c55e;
}

.alert-error {
    background: rgba(239,68,68,.1);
    color: #f87171;
    border-left: 4px solid #ef4444;
}

/* ── Lightbox override ── */
.glightbox-container { z-index: 99999; }

/* ── Filter tabs ── */
.filter-tabs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.filter-tab {
    padding: .45rem 1.2rem;
    border-radius: 2rem;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.04);
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
}

.filter-tab:hover,
.filter-tab.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #0a0a0a;
    box-shadow: 0 0 20px rgba(212,160,23,.3);
}

/* ── Page hero ── */
.page-hero {
    background: var(--dark-soft);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,.4), transparent);
}

.page-hero-alt::after { display: none; }

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: .75rem;
}

.page-hero p {
    color: rgba(255,255,255,.75);
    font-size: 1.1rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    margin-bottom: 1rem;
}

.breadcrumb a { color: var(--accent); }

/* ══════════════════════════════════════
   Hero Party Effects
══════════════════════════════════════ */

/* Shimmer bar fixed at very top of page */
.page-sparkle-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0a0a0a 0%, #a87c10 20%, #d4a017 40%, #f0c040 50%, #d4a017 60%, #a87c10 80%, #0a0a0a 100%);
    background-size: 300% 100%;
    animation: sparkleBarSlide 4s linear infinite;
    z-index: 1002;
    pointer-events: none;
}

@keyframes sparkleBarSlide {
    0%   { background-position:  150% 0; }
    100% { background-position: -150% 0; }
}

/* Canvas confetti/emojis — fixed full-page overlay */
#partyCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

/* Ensure page content stays above fixed effects overlay */
.site-header  { z-index: 1000; }

.hero-content  { position: relative; z-index: 5; }
.hero-badge,
.hero-title,
.hero-subtitle,
.hero-actions  { position: relative; }

/* Shooting stars container — fixed full-page */
.hero-shooting-stars {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-shooting-stars span {
    position: absolute;
    left: -280px;
    width: 220px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(240,192,64,.85), rgba(255,255,255,.95), transparent);
    border-radius: 99px;
    opacity: 0;
    animation: shootingStar linear infinite;
}

.hero-shooting-stars span:nth-child(1) { top:  7%; animation-duration: 5.0s; animation-delay:  0.5s; }
.hero-shooting-stars span:nth-child(2) { top: 20%; animation-duration: 7.5s; animation-delay:  2.0s; }
.hero-shooting-stars span:nth-child(3) { top: 38%; animation-duration: 6.0s; animation-delay:  4.0s; }
.hero-shooting-stars span:nth-child(4) { top: 11%; animation-duration: 8.5s; animation-delay:  1.0s; }
.hero-shooting-stars span:nth-child(5) { top: 55%; animation-duration: 5.5s; animation-delay:  3.5s; }
.hero-shooting-stars span:nth-child(6) { top: 43%; animation-duration: 9.0s; animation-delay:  6.0s; }

@keyframes shootingStar {
    0%   { transform: translateX(0)      translateY(0)    rotate(-28deg); opacity: 0; }
    4%   { opacity: 1; }
    75%  { opacity: .85; }
    100% { transform: translateX(130vw) translateY(40vh) rotate(-28deg); opacity: 0; }
}

/* ── Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
    50%       { box-shadow: 0 6px 40px rgba(37,211,102,.8); }
}

.aos-init { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.aos-animate { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid  { gap: 2.5rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100vw;
        height: 100vh;
        background: #0f172a;
        align-items: center;
        justify-content: center;
        gap: 1.75rem;
        z-index: 99999;
        overflow-y: auto;
        padding: 5rem 2rem 3rem;
        list-style: none;
    }

    .nav-links.open li { width: 100%; text-align: center; }

    .nav-links.open a {
        font-size: 1.4rem;
        display: block;
        padding: .5rem 0;
        color: rgba(255,255,255,.85);
    }

    .nav-links.open a.active,
    .nav-links.open a:hover { color: #f59e0b; }

    .nav-links-close { display: none; }
    .nav-links.open .nav-links-close {
        display: block !important;
        position: fixed;
        top: 1.25rem;
        right: 1.5rem;
        z-index: 100000;
    }

    .hero-content { align-items: center; text-align: center; }
    .hero-actions { justify-content: center; }

    .about-grid    { grid-template-columns: 1fr; }
    .contact-grid  { grid-template-columns: 1fr; }
    .card-grid-3   { grid-template-columns: 1fr; }
    .card-grid-2   { grid-template-columns: 1fr; }
    .about-badge-float { right: 0; bottom: 1rem; }
    .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
    .form-row      { grid-template-columns: 1fr; }
    .about-values  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .section { padding: 3.5rem 0; }
    .navbar   { padding: 1rem; }
    .hero-title { font-size: 2rem; }
    .floating-whatsapp { bottom: 1rem; right: 1rem; }
}
