:root {
    --color-bg: #0A0A0A;
    --color-surface: #141414;
    --color-primary: #D9042B;
    --color-primary-glow: rgba(217, 4, 43, 0.5);
    --color-border: rgba(217, 4, 43, 0.2);
    --color-text: #EDEDED;
    --color-text-muted: #8A8A8A;
    
    --font-heading: 'Clash Display', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography Utilities */
.text-red { color: var(--color-primary); }
.center { text-align: center; }

/* --------------------------------------
   ICONS (Lucide)
-------------------------------------- */
i[data-lucide] {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
    stroke-width: 2;
}

/* --------------------------------------
   NAVIGATION BAR
-------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 1px;
    justify-self: start;
}

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

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    justify-self: center;
}

@media (max-width: 1150px) {
    .nav-links {
        gap: 1rem;
    }
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-smooth);
    justify-self: end;
    grid-column: 3;
}

.nav-cta:hover {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 15px var(--color-primary-glow);
}

/* --------------------------------------
   SECTION 1: HERO
-------------------------------------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--color-bg) 5%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headline-massive {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6.5rem); 
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.sub-headline {
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    color: var(--color-text-muted);
    margin: 0 auto 3rem auto;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.6;
}

/* Button & Magnetic Effect */
.magnetic-wrapper {
    display: inline-flex;
    padding: 10px;
    margin: -10px;
    cursor: pointer;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    will-change: transform;
}

.cta-button:hover {
    box-shadow: 0 0 30px var(--color-primary-glow);
    background-color: transparent;
    border-color: var(--color-primary);
}

.cta-button i[data-lucide] {
    stroke: #fff;
    width: 22px;
    height: 22px;
}
.cta-button:hover i[data-lucide] {
    stroke: var(--color-primary);
}

/* --------------------------------------
   SECTION 2: MANIFESTO
-------------------------------------- */
.manifesto {
    position: relative;
    padding: 10rem 0;
    background-color: #0A0A0A; /* Corrigido para combinar com o restante da página */
    display: flex;
    align-items: center;
    justify-content: center;
}

.manifesto-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.5) 0%, #000 85%);
    z-index: 1;
}

.manifesto-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
}

.manifesto-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--color-text);
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.manifesto-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #ccc;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    max-width: 750px;
}

.manifesto-alert-card {
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(217, 4, 43, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 650px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.manifesto-alert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-primary);
    box-shadow: 0 0 15px var(--color-primary-glow);
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.manifesto-alert-card p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #eee;
    line-height: 1.5;
}

/* --------------------------------------
   SECTION 3: INDICADO PARA (TAGS)
-------------------------------------- */
.indicado-para {
    padding: 8rem 0;
    background-color: var(--color-bg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 3rem;
    text-transform: uppercase;
    text-align: center;
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tag-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #ccc;
    transition: var(--transition-smooth);
}

.tag-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    color: #fff;
}

.super-card {
    background-color: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    border-radius: 12px;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #eee;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.super-card strong {
    color: var(--color-primary);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.super-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    transform: translateY(-3px);
}

/* --------------------------------------
   SECTION 4: O QUE ESTÁ INCLUSO
-------------------------------------- */
.incluso {
    padding: 8rem 0;
    background-color: var(--color-bg);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1.5rem;
}

.bento-card {
    background-color: var(--color-surface);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Changed from flex-end for better readability */
    align-items: flex-start;
    gap: 1.5rem; /* Separates icon from text */
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(217, 4, 43, 0.4);
}

.bento-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    margin: 0;
}

.bento-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(217, 4, 43, 0.1);
    padding: 12px;
    border-radius: 12px;
    z-index: 2;
}

.wide { grid-column: span 2; }
.square { grid-column: span 1; }

.video-bg {
    background-image: url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.video-bg .video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(20,20,20,0.95) 0%, rgba(20,20,20,0.6) 100%);
    z-index: 1;
}

.video-bg .card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

/* --------------------------------------
   SECTION 5: PRICING
-------------------------------------- */
.pricing {
    padding: 8rem 0;
    background-color: var(--color-bg);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    align-items: center; /* Aligns cards for stair effect */
    gap: 1.5rem;
    flex-wrap: wrap;
}

.price-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.regular-card {
    opacity: 0.75;
}
.regular-card .card-header h4 {
    color: #999;
}
.regular-card .upfront-price {
    color: #7A7A7A;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(217, 4, 43, 0.5);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.card-header h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 2rem;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.price .currency {
    font-family: var(--font-body);
    font-size: 14px;
    color: #888;
    margin-right: 0.3rem;
}

.price .value {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.price .period {
    font-family: var(--font-body);
    font-size: 14px;
    color: #888;
    margin-left: 0.2rem;
}

.upfront-price {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    min-height: 20px;
}

.btn-outline {
    display: block;
    text-align: center;
    padding: 1rem;
    border: 1px solid #333;
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: auto;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #555;
    color: #fff;
}

/* Highlighted Plan */
.highlighted {
    transform: scale(1.12); /* Escalado mais alto */
    border: 1px solid rgba(255,255,255,0.03); /* Remove hard red border */
    border-top: 1px solid rgba(255,255,255,0.1); /* Subtle top reflection */
    box-shadow: 0 0 40px rgba(217, 4, 43, 0.15); /* Soft outer red shadow */
    background: rgba(20, 20, 20, 0.7); /* Glass effect */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 10;
    overflow: hidden; /* Important for ribbon to not spill */
}

.highlighted:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 0 50px rgba(217, 4, 43, 0.25);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    justify-self: end;
    grid-column: 3;
}

.ribbon-wrapper {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 130px;
    height: 130px;
    overflow: hidden;
    z-index: 5;
}

.ribbon {
    position: absolute;
    top: 25px;
    right: -35px;
    background-color: var(--color-primary);
    color: white;
    padding: 5px 40px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.btn-solid {
    display: block;
    text-align: center;
    padding: 1rem;
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: 4px;
    margin-top: auto;
    transition: var(--transition-smooth);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.15), 0 0 20px var(--color-primary-glow);
}

.btn-solid:hover {
    background-color: #eb0531;
    color: #fff;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.25), 0 0 30px rgba(217, 4, 43, 0.5);
}

/* --------------------------------------
   SECTION 6: FAQ (REFORMULADA)
-------------------------------------- */
.faq {
    padding: 8rem 0;
    background-color: var(--color-bg);
}

.faq-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.faq-desc-centered {
    font-size: 1.15rem;
    color: #8A8A8A;
    line-height: 1.6;
    margin-top: 1rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-header {
    width: 100%;
    text-align: left;
    padding: 2rem 0;
    background: none;
    border: none;
    color: #EDEDED;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-header:hover {
    color: var(--color-primary);
}

.faq-card.open .faq-header {
    color: var(--color-primary);
}

.faq-question {
    padding-right: 2rem;
    line-height: 1.4;
}

.icon-plus {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-left: 1rem;
}

.icon-plus::before,
.icon-plus::after {
    content: '';
    position: absolute;
    background-color: var(--color-primary);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-plus::before {
    top: 11px;
    left: 0;
    width: 24px;
    height: 2px;
}

.icon-plus::after {
    top: 0;
    left: 11px;
    width: 2px;
    height: 24px;
}

.faq-card.open .icon-plus::after {
    transform: rotate(90deg);
}

.faq-card.open .icon-plus::before {
    transform: rotate(180deg);
}

.faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.faq-card.open .faq-body {
    grid-template-rows: 1fr;
}

.faq-content {
    overflow: hidden;
    color: #EDEDED;
    font-size: 1.1rem;
    line-height: 1.6;
    padding-bottom: 0;
    transition: padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.faq-card.open .faq-content {
    padding-bottom: 2rem;
    opacity: 1;
}

/* --------------------------------------
   SECTION 7: FOOTER (MODERN)
-------------------------------------- */
.footer-modern {
    position: relative;
    padding: 6rem 0 2rem;
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.watermark-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18vw;
    color: rgba(255, 255, 255, 0.015);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

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

.footer-desc {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* --------------------------------------
   RESPONSIVE
-------------------------------------- */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards {
        align-items: stretch;
    }
    
    .highlighted {
        transform: scale(1);
    }
    .highlighted:hover {
        transform: translateY(-5px);
    }
}

/* Hide mobile overlay by default on desktop */
.mobile-menu-overlay {
    display: none;
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    .mobile-menu-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-nav-links {
        list-style: none;
        text-align: center;
        margin-bottom: 3rem;
    }

    .mobile-nav-links li {
        margin-bottom: 2rem;
        transform: translateY(20px);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .mobile-menu-overlay.open .mobile-nav-links li {
        transform: translateY(0);
        opacity: 1;
    }

    /* Staggered animation */
    .mobile-menu-overlay.open .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu-overlay.open .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
    .mobile-menu-overlay.open .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
    .mobile-menu-overlay.open .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
    .mobile-menu-overlay.open .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }

    .mobile-link {
        font-family: var(--font-heading);
        font-size: 2rem;
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 600;
    }

    .mobile-cta {
        transform: translateY(20px);
        opacity: 0;
        transition: transform 0.4s ease 0.4s, opacity 0.4s ease 0.4s;
    }

    .mobile-menu-overlay.open .mobile-cta {
        transform: translateY(0);
        opacity: 1;
    }

    /* Hamburger Animation */
    .mobile-menu-btn span {
        width: 100%;
        height: 2px;
        background-color: var(--color-text);
        transition: 0.3s ease;
    }

    .mobile-menu-btn.open span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.open span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }
    
    /* Layout Optimizations */
    .hero {
        min-height: 100vh;
    }
    
    .manifesto, .incluso, .indicado-para, .pricing, .faq {
        padding: 5rem 0;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .wide, .square {
        grid-column: span 1;
    }
    
    .pricing-cards {
        flex-direction: column;
        gap: 2rem;
    }
    
    .price-card {
        width: 100%;
    }
    
    .headline-massive {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .manifesto-text {
        font-size: 1.3rem;
        text-align: left;
    }
    
    .tags-grid {
        flex-direction: column;
    }
    
    .tag-card {
        text-align: center;
    }
    
    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
}

/* Animations Trigger Class */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
