/* ==========================================================================
   PAPALÉGUAS FOGÕES - V7 PREMIUM (Video Hero + Interactive Mascot)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&display=swap');

:root {
    --primary: #FF5500;
    --primary-dark: #E04A00;
    --primary-glow: rgba(255, 85, 0, 0.2);
    --secondary: #00A6FF;
    --accent: #FFBF00;
    --bg-main: #FAFBFE;
    --bg-white: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.12);
    --bg-glass-light: rgba(255, 255, 255, 0.7);
    --text-dark: #0F172A;
    --text-body: #334155;
    --text-muted: #94A3B8;
    --border-light: rgba(255, 255, 255, 0.15);
    --border-dark: rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(255, 85, 0, 0.3);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --gradient-primary: linear-gradient(135deg, #FF5500, #FF8C00);
    --gradient-dark: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-main);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Responsive global zoom to prevent layout clipping and oversized elements on standard laptops/desktops */
@media (min-width: 992px) and (max-width: 1536px) {
    body {
        zoom: 0.90; /* 90% scaling on typical laptop screens */
    }
}
@media (min-width: 992px) and (max-width: 1366px) {
    body {
        zoom: 0.88; /* 88% scaling on smaller/standard laptop viewports */
    }
}

/* ==========================================================================
   NAVBAR - GLASS
   ========================================================================== */
.navbar {
    background: rgba(15, 23, 42, 0.4) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0;
    transition: all 0.5s ease;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--border-dark);
}
.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 20px !important;
    border-radius: 100px;
    transition: all 0.3s ease;
}
.navbar.scrolled .nav-link {
    color: var(--text-dark) !important;
}
.navbar .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.12);
}
.navbar.scrolled .nav-link:hover {
    color: var(--primary) !important;
    background: var(--primary-glow);
}
.navbar .btn-primary {
    background: var(--gradient-primary) !important;
    border: none !important;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 85, 0, 0.3);
    transition: all 0.3s ease;
}
.navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}
.navbar-toggler { border-color: rgba(255, 255, 255, 0.3) !important; }
.navbar-toggler-icon { filter: brightness(2); }
.navbar.scrolled .navbar-toggler { border-color: rgba(0,0,0,0.2) !important; }
.navbar.scrolled .navbar-toggler-icon { filter: none; }

/* ==========================================================================
   HERO - VIDEO BACKGROUND
   ========================================================================== */
.hero-video-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.hero-video-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: blur(2px) brightness(0.5);
}
.hero-video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 15, 30, 0.7) 0%,
        rgba(10, 15, 30, 0.5) 50%,
        rgba(10, 15, 30, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 60px;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out;
}
.hero-badge .dot {
    width: 8px; height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.0;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 85, 0, 0.4));
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    max-width: 480px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 17px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 8px 30px rgba(255, 85, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-glow::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}
.btn-glow:hover::before { left: 100%; }
.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 85, 0, 0.5);
    color: #fff;
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 17px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #fff;
}

/* ==========================================================================
   MASCOT SYSTEM
   ========================================================================== */
.mascot-hero-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInUp 1s ease-out 0.4s both;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth mouse parallax transition */
}

.mascot-hero {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
    animation: mascot-breathe-float 5s ease-in-out infinite;
    cursor: pointer;
    transition: filter 0.3s, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.mascot-hero:hover {
    filter: drop-shadow(0 20px 60px rgba(255, 85, 0, 0.45));
}

/* Wiggle animation class applied dynamically on click */
.mascot-hero.mascot-clicked {
    animation: mascot-wiggle 0.6s ease-in-out;
}

@keyframes mascot-breathe-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-16px) scale(1.035); }
}

@keyframes mascot-wiggle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    15% { transform: scale(0.92) rotate(-8deg); }
    30% { transform: scale(1.08) rotate(6deg); }
    45% { transform: scale(0.96) rotate(-4deg); }
    65% { transform: scale(1.03) rotate(3deg); }
    80% { transform: scale(0.99) rotate(-1deg); }
}

/* Speech bubbles */
.speech-bubble {
    position: absolute;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    padding: 16px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(255,255,255,0.5);
    max-width: 240px;
    opacity: 0;
    transform: translateY(15px) scale(0.85);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    line-height: 1.5;
    letter-spacing: -0.2px;
    pointer-events: none;
    animation: bubble-float 6s ease-in-out infinite;
}
.speech-bubble.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.speech-bubble::before,
.speech-bubble::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.bubble-left::before {
    right: -10px;
    bottom: 30px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.8);
    z-index: 1;
}
.bubble-left::after {
    right: -9px;
    bottom: 30px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #ffffff;
    z-index: 2;
}

.bubble-right::before {
    left: -10px;
    bottom: 30px;
    border-width: 10px 10px 10px 0;
    border-color: transparent rgba(255, 255, 255, 0.8) transparent transparent;
    z-index: 1;
}
.bubble-right::after {
    left: -9px;
    bottom: 30px;
    border-width: 10px 10px 10px 0;
    border-color: transparent #ffffff transparent transparent;
    z-index: 2;
}

.bubble-top::before {
    bottom: -10px;
    left: 40px;
    border-width: 10px 10px 0 10px;
    border-color: rgba(255, 255, 255, 0.8) transparent transparent transparent;
    z-index: 1;
}
.bubble-top::after {
    bottom: -9px;
    left: 40px;
    border-width: 10px 10px 0 10px;
    border-color: #ffffff transparent transparent transparent;
    z-index: 2;
}

@keyframes bubble-float {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -8px; }
}

@keyframes mascot-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.hero-speech {
    top: 20px;
    left: -30px;
}

/* Section mascots */
.section-mascot-wrap {
    position: absolute;
    z-index: 5;
    opacity: 0;
    transition: all 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.section-mascot-wrap.show {
    opacity: 1;
}
.section-mascot-wrap.from-left { transform: translateX(-80px); }
.section-mascot-wrap.from-left.show { transform: translateX(0); }
.section-mascot-wrap.from-right { transform: translateX(80px); }
.section-mascot-wrap.from-right.show { transform: translateX(0); }

.section-mascot-img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
    animation: mascot-float 5s ease-in-out infinite;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
    padding: 50px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-dark);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-item { padding: 16px; }
.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section-v7 {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 14px;
}
.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 56px;
}

/* ==========================================================================
   GLASS CARDS
   ========================================================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.glass-card {
    background: var(--bg-glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 44px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.glass-card:hover::before { transform: scaleX(1); }
.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 85, 0, 0.2);
}
.card-icon-wrap {
    width: 68px; height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin: 0 auto 22px;
    font-size: 1.8rem;
    transition: transform 0.3s;
}
.glass-card:hover .card-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.icon-blue { background: rgba(0, 166, 255, 0.1); color: var(--secondary); }
.icon-orange { background: rgba(255, 85, 0, 0.1); color: var(--primary); }
.icon-yellow { background: rgba(255, 191, 0, 0.1); color: var(--accent); }

.glass-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.glass-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* ==========================================================================
   VIDEO (FÁBRICA) SECTION
   ========================================================================== */
.video-section-bg {
    background: linear-gradient(180deg, var(--bg-main) 0%, #EEF2FF 100%);
}
.video-wrapper {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}
.video-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-dark);
}
.video-frame video {
    width: 100%; display: block;
}
.video-mascot-wrap {
    position: absolute;
    bottom: -10px;
    right: -70px;
    z-index: 5;
}

/* ==========================================================================
   CTA INSTAGRAM
   ========================================================================== */
.cta-section { padding: 40px 0 100px; }
.cta-card {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(188, 24, 136, 0.3);
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -60%; right: -15%;
    width: 450px; height: 450px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    animation: float-orb 10s ease-in-out infinite;
}
.cta-card::after {
    content: '';
    position: absolute;
    bottom: -40%; left: -10%;
    width: 350px; height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float-orb 12s ease-in-out infinite reverse;
}
.cta-card h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    position: relative; z-index: 2;
}
.cta-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
    position: relative; z-index: 2;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary);
    padding: 18px 44px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative; z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.btn-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}
.cta-mascot-wrap {
    position: absolute;
    bottom: 10px; left: 40px;
    z-index: 3;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #f8faff;
    padding: 100px 0 40px;
    color: #2d3436;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.footer h5 {
    color: #1a1a1a;
    font-family: var(--font-header);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
}
.footer h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}
.footer-link {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 12px;
}
.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}
.social-links a {
    width: 45px;
    height: 45px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--text-dark);
    margin-right: 12px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
    border-color: var(--primary-color);
}
.footer-map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 200px;
    transition: transform 0.3s ease;
}
.footer-map-container:hover {
    transform: scale(1.02);
}
.contact-list i {
    width: 20px;
    color: var(--primary-color);
    margin-right: 12px;
}
.contact-list span {
    color: #636e72;
}
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 40px;
    margin-top: 60px;
    color: #b2bec3;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(35px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}
@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, -35px) scale(1.08); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.show {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .hero-sub { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .mascot-hero-wrap { order: -1; }
    .mascot-hero { max-width: 260px; }
    .hero-speech { left: 50% !important; top: -10px; transform: translateX(-50%); }
    .hero-speech.show { transform: translateX(-50%) scale(1); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .section-mascot-wrap { display: none; }
    .video-mascot-wrap { display: none; }
    .cta-mascot-wrap { display: none; }
    .cta-card { padding: 60px 28px; }
    .sobre-timeline { gap: 30px; }
    .timeline-card { flex-direction: column; }
}

@media (max-width: 576px) {
    .hero-video-section { min-height: auto; }
    .hero-content { padding: 120px 0 60px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-number { font-size: 2rem; }
    .cards-grid { grid-template-columns: 1fr; }
    .section-v7 { padding: 80px 0; }
    .btn-glow, .btn-glass { padding: 14px 28px; font-size: 0.95rem; }
    .sobre-hero h1 { font-size: 2.5rem !important; }
}

/* ==========================================================================
   SOBRE NÓS PAGE
   ========================================================================== */
.sobre-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.sobre-hero .hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.sobre-hero .hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}
.sobre-hero .hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}
.sobre-hero .section-tag-v7 {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.sobre-hero .hero-title {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
}
.sobre-hero .hero-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Timeline */
.sobre-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
    position: relative;
}
.timeline-card {
    display: flex;
    gap: 30px;
    align-items: stretch;
}
.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 30px;
}
.timeline-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: 0 0 0 6px rgba(255, 85, 0, 0.15);
    flex-shrink: 0;
    margin-top: 20px;
}
.timeline-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, var(--primary), transparent);
    margin-top: 8px;
}
.timeline-badge {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(255, 85, 0, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* ==========================================================================
   PRODUCTS PAGE (V7 PREMIUM DESIGN)
   ========================================================================== */

/* 1. Page Header (Hero Banner style) */
.page-header {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 125px 0 25px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header .section-tag {
    background: rgba(255, 85, 0, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 85, 0, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.page-header-title {
    color: #FFFFFF;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-header-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* 2. Filter Bar (Glassmorphic) */
.filter-bar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: -35px; /* Pulls it up into the header slightly for that overlapping modern look */
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.filter-bar-left {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    flex: 1;
}

.filter-search {
    position: relative;
    flex: 1;
    min-width: 240px;
}

.filter-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.1rem;
}

.filter-search input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.filter-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
    background: #FFFFFF;
}

.filter-select-wrapper {
    position: relative;
    min-width: 200px;
}

.filter-select-wrapper select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select-wrapper select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
    background: #FFFFFF;
}

.filter-select-wrapper i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 0.85rem;
}

.filter-bar-right {
    flex-shrink: 0;
}

.filter-count {
    font-weight: 600;
    color: var(--text-body);
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.04);
    padding: 6px 16px;
    border-radius: 50px;
}

/* 3. Category Chips */
.cat-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.chip {
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFFFFF;
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 85, 0, 0.08);
}

.chip.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #FFFFFF;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(255, 85, 0, 0.25);
}

/* Sub-chips styling */
.sub-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.02);
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 30px;
    animation: fadeIn 0.3s ease-out;
}

.sub-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
}

.sub-chip {
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #FFFFFF;
    color: var(--text-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sub-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.sub-chip.active {
    background: var(--text-dark);
    color: #FFFFFF;
    border-color: var(--text-dark);
}

/* 4. Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* 5. Product Card */
.prod-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.prod-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.2), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 85, 0, 0.1);
    border-color: rgba(255, 85, 0, 0.15);
}

.prod-card:hover::before {
    opacity: 1;
}

.prod-img {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.prod-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.prod-card:hover .prod-img img {
    transform: scale(1.06);
}

.prod-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prod-badge {
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(255, 85, 0, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.prod-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

/* 6. Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px dashed rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.empty-state i {
    font-size: 3.5rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: inline-block;
}

.empty-state h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 7. Responsive Styles for Products */
@media (max-width: 992px) {
    .page-header-title { font-size: 3rem; }
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
        margin-top: -25px;
        padding: 18px;
    }
    .filter-bar-right {
        text-align: right;
    }
}

@media (max-width: 576px) {
    .page-header { padding: 95px 0 20px; }
    .page-header-title { font-size: 2.25rem; }
    .page-header-subtitle { font-size: 1rem; }
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .filter-search, .filter-select-wrapper {
        min-width: 100%;
    }
}