/* style.css */
:root {
    --primary: #FFE600;
    --black: #000000;
    --white: #FFFFFF;
    --border-width: 3px;
    --shadow-solid: 6px 6px 0px var(--black);
    --shadow-hover: 2px 2px 0px var(--black);
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 85%;
    /* Reduz o tamanho de tudo que usa 'rem' (como botões, textos, menus) em 15% */
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo-box,
.badge {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: var(--black);
}

/* Utilitários */
.card-white {
    background-color: var(--white);
    border: var(--border-width) solid var(--black);
    box-shadow: var(--shadow-solid);
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-yellow {
    background-color: var(--primary);
    border: var(--border-width) solid var(--black);
    box-shadow: var(--shadow-solid);
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-white:hover,
.card-yellow:hover {
    transform: translate(4px, 4px);
    box-shadow: var(--shadow-hover);
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    border: var(--border-width) solid var(--black);
    box-shadow: var(--shadow-solid);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    transform: translate(4px, 4px);
    box-shadow: var(--shadow-hover);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--black);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--black);
}

.btn-giant {
    font-size: 2rem;
    padding: 1.5rem 3rem;
}

/* Cabeçalho */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    border-bottom: var(--border-width) solid var(--black);

    /* Efeito Glassmorphism */
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    position: sticky;
    top: 0;
    margin-bottom: 0;
    z-index: 1000;
}

.logo-box {
    font-size: 1.8rem;
    font-weight: 700;
    background-color: #000;
    padding: 4px 10px;
    display: inline-block;
    text-decoration: none;
    letter-spacing: 2px;
}

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

.logo-white {
    color: var(--white);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--black);
    text-decoration: none;
    position: relative;
}

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

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

/* Seção Principal (Hero) */
.hero {
    display: flex;
    padding: 5rem 5%;
    gap: 6rem;
    align-items: center;
    justify-content: center;
    /* Centraliza todo o bloco no meio da tela */
    min-height: 80vh;
    background-image: radial-gradient(var(--black) 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: var(--white);
}

.hero-content {
    /* flex: 1 foi removido para a caixa não ocupar 50% da tela à força */
}

.badge {
    display: inline-block;
    background-color: var(--primary);
    padding: 0.5rem 1rem;
    border: var(--border-width) solid var(--black);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 4px 4px 0px var(--black);
}

.hero-title {
    font-size: 4vw;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--primary);
    letter-spacing: 4px;
}

.highlight-black {
    background-color: var(--black);
    color: var(--primary);
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 8px;
    white-space: nowrap;
}

.text-outline {
    color: var(--primary);
    -webkit-text-stroke: 3px var(--black);
}

/* Classes de Decoração HQ */
.hq-decor {
    position: absolute;
    font-family: var(--font-heading);
    -webkit-text-stroke: 2px #000;
    text-shadow: 4px 4px 0 #000;
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

.hq-decor.primary {
    color: var(--primary);
}

.hq-decor.white {
    color: var(--white);
}

.hq-decor.black {
    color: #000;
    -webkit-text-stroke: 0;
    text-shadow: none;
}

.hq-decor-img {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
    width: 150px;
    height: auto;
}

/* Ações e Subtítulo da Seção Principal */
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 24px;
    font-weight: 400;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--primary);
    color: var(--black);
    border: 3px solid var(--black);
    box-shadow: 6px 6px 0px var(--black);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.btn-main:hover {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0px var(--black);
}

.hero-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
}

.social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--black);
    color: var(--primary);
    font-size: 1.5rem;
    border: 2px solid var(--black);
    transition: transform 0.2s, background-color 0.2s, color 0.2s;
    text-decoration: none;
}

.social-btn:hover {
    background-color: var(--primary);
    color: var(--black);
    transform: translateY(-4px);
}

.mascot-card {
    /* flex: 1 removido pelo mesmo motivo */
    width: 100%;
    max-width: 450px;
    margin-top: -4rem;
    /* Sobe a imagem em relação ao texto */
    height: auto;
    background-color: var(--primary);
    border: var(--border-width) solid var(--black);
    box-shadow: var(--shadow-solid);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transform: rotate(-2deg);
    position: relative;
}

.mascot-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: var(--white);
    border: 2px dashed var(--black);
    object-fit: cover;
    object-position: center top;
}

/* Badges e Adesivos do Card */
.badge-tag {
    font-weight: 700;
    font-size: 1rem;
    z-index: 10;
    text-transform: uppercase;
}

.badge-circle {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black);
    background-color: var(--primary);
    color: var(--black);
    font-weight: 700;
    z-index: 10;
    width: 80px;
    /* Reduzido de 100px para 80px */
    height: 80px;
    /* Reduzido de 100px para 80px */
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.1;
}

.tag-top-left {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000;
    color: #FFE600;
    padding: 6px 12px;
}

.top-right {
    position: absolute;
    top: -30px;
    right: -30px;
}

.tag-bottom-left {
    position: absolute;
    bottom: -15px;
    left: -30px;
    background: #000;
    color: #FFE600;
    padding: 8px 16px;
    transform: rotate(-6deg);
}

.tag-bottom-right {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #FFE600;
    color: #000;
    border: 2px solid #000;
    padding: 6px 12px;
}

/* Faixa Animada (Marquee) */
.marquee-container {
    width: 100%;
    margin-top: 0;
    overflow: hidden;
    background-color: var(--primary);
    border-bottom: var(--border-width) solid var(--black);
    padding: 0.5rem 0;
    display: flex;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    animation: marquee 35s linear infinite;
    will-change: transform;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-track span {
    flex-shrink: 0;
    /* Impede que o texto esmague e quebre a linha */
    padding-right: 1rem;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Seção Quem Somos */
.about-section {
    padding: 6rem 5% 0 5%;
    background-color: var(--white);
    border-top: 2px solid var(--black);
}

.about-top {
    display: flex;
    gap: 2rem;
    margin: 0 auto 4rem auto;
    max-width: 1100px;
}

.about-left,
.about-right {
    flex: 1;
}

.section-label {
    display: block;
    font-weight: 900;
    font-family: var(--font-heading);
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.about-title {
    font-size: 4rem;
    line-height: 1.4;
    /* Aumenta o espaço entre as linhas */
    margin: 0;
    letter-spacing: 4px;
    /* Aumenta o espaçamento entre as letras */
}

.about-right p {
    font-size: 1.5rem;
    /* Texto maior */
    line-height: 1.3;
    /* Menos espaçamento entre as linhas do texto */
    margin-bottom: 0.8rem;
    /* Menos espaço (enters) entre os parágrafos */
    color: var(--black);
}

.about-right p:last-child {
    margin-bottom: 0;
}

/* Estatísticas sobre nós */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 4rem auto;
    border: var(--border-width) solid var(--black);
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

/* Adiciona bordas entre os itens */
.stat-box:not(:last-child) {
    border-right: var(--border-width) solid var(--black);
}

.yellow-box {
    background-color: var(--primary);
    color: var(--black);
}

.black-box {
    background-color: var(--black);
    color: var(--primary);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Pillars Section (Missão, Visão, Valores) */
.pillars-section {
    background-color: #000;
    padding: 80px 5%;
}

.pillars-top {
    text-align: left;
    margin-bottom: 60px;
}

.section-label-yellow {
    display: block;
    color: var(--primary);
    font-weight: 900;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.pillars-title {
    margin: 0;
    line-height: 1.1;
}

.highlight-yellow {
    background-color: var(--primary);
    color: #000;
    display: inline-block;
    padding: 10px 20px;
    font-size: 4rem;
    letter-spacing: 2px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    background-color: #FFF;
    border: 4px solid var(--primary);
    position: relative;
    padding: 40px 30px 30px 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pillar-card:hover {
    background-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 8px 8px 0px #FFF;
}

.card-number {
    position: absolute;
    top: -20px;
    left: -20px;
    background-color: var(--primary);
    color: #000;
    font-weight: 900;
    font-family: var(--font-heading);
    font-size: 2rem;
    border: 3px solid #000;
    padding: 5px 15px;
    line-height: 1;
}

.card-icon {
    font-size: 3rem;
    color: #000;
    margin-bottom: 20px;
}

.pillar-card h3 {
    color: #000;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 900;
}

.pillar-card p {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.5;
}

.pillar-card ul {
    list-style-type: square;
    color: #000;
    padding-left: 20px;
}

.pillar-card ul li {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Seção O Que Fazemos e Público */
.services-audience-section {
    display: flex;
    gap: 40px;
    padding: 5rem 5%;
    background-color: var(--white);
}

.services-col,
.audience-col {
    flex: 1;
}

.sa-title {
    font-size: 4rem;
    letter-spacing: 4px;
    margin-bottom: 40px;
    line-height: 1.1;
}

.service-item {
    background-color: #FFF;
    border: 2px solid #000;
    padding: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-square {
    background-color: var(--primary);
    border: 2px solid #000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.service-item p {
    color: #444;
    font-size: 1rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.audience-card {
    background-color: #000;
    padding: 24px;
    aspect-ratio: 1/1;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #000;
}

.audience-card:hover {
    background-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 8px 8px 0px #000;
}

.audience-card:hover .icon-yellow,
.audience-card:hover .card-bottom .small-number,
.audience-card:hover .card-bottom h4 {
    color: #000;
}

.icon-yellow {
    color: var(--primary);
    font-size: 3rem;
    transition: color 0.3s ease;
}

.card-bottom .small-number {
    display: block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.card-bottom h4 {
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1.2;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* Seção Apoio / Parcerias */
.support-section {
    padding: 6rem 5%;
    display: flex;
    gap: 60px;
    background: repeating-linear-gradient(45deg,
            var(--primary),
            var(--primary) 10px,
            #F0D800 10px,
            /* linha ligeiramente mais escura */
            #F0D800 12px);
}

.support-info,
.support-benefits {
    flex: 1;
}

.support-title-block {
    margin: 20px 0 30px 0;
    line-height: 1.1;
}

.highlight-yellow-black {
    background-color: #000;
    color: var(--primary);
    padding: 8px 16px;
    display: inline-block;
    font-size: 3.5rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.support-text {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #000;
    font-weight: 700;
}

.proposal-box {
    background-color: #FFF;
    border: 3px solid #000;
    padding: 24px;
    box-shadow: 6px 6px 0px #000;
}

.proposal-label {
    display: block;
    color: #555;
    font-weight: 900;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.proposal-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: #000;
    font-weight: 700;
}

.support-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.benefit-card {
    background-color: #000;
    border: 3px solid #000;
    color: #FFF;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.benefit-card:hover {
    background-color: #FFF;
    color: #000;
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0px #000;
}

.check-square {
    background-color: var(--primary);
    border: 2px solid #000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.benefit-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.benefit-card:hover .benefit-content p {
    color: #333;
    opacity: 1;
}

.support-cta {
    background-color: #000;
    border: 3px solid #000;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: center;
    padding: 20px;
    text-decoration: none;
    box-shadow: -6px -6px 0px var(--white);
    transition: all 0.3s ease;
}

.support-cta:hover {
    background-color: var(--primary);
    color: #000;
    box-shadow: -4px -4px 0px var(--white);
    transform: translate(2px, 2px);
}

.cta-container {
    margin-top: 2rem;
}

/* Seção de Chamada para Ação (CTA) */
.cta-section {
    background-color: var(--white);
    text-align: center;
    padding: 100px 20px;
}

.section-label-center {
    color: #666;
    text-transform: uppercase;
    font-weight: 900;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-section h2 {
    font-size: 4rem;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 40px;
}

.social-buttons-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* Rodapé */
.main-footer {
    background-color: #000;
    border-top: 8px solid var(--primary);
    padding: 80px 10%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.footer-col .footer-logo {
    background-color: #000;
    border: 2px solid var(--white);
    font-weight: 900;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    padding: 10px 20px;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col p {
    color: #CCC;
    font-size: 1.1rem;
    line-height: 1.5;
}

.footer-title {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #FFF;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-social-btn {
    width: 45px;
    height: 45px;
    background-color: #000;
    border: 1px solid #333;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background-color: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.footer-handles {
    color: #666 !important;
    font-size: 0.85rem !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .stat-num {
        font-size: 2.5rem;
    }

    .stat-desc {
        font-size: 0.8rem;
    }

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

    .audience-card {
        aspect-ratio: auto;
        min-height: auto;
        padding: 24px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 3rem;
    }

    .hero-title {
        font-size: 6vw;
        letter-spacing: 1px;
    }

    .services-logo-container div:last-child {
        font-size: 2.8rem !important;
        padding: 10px 20px !important;
    }

    .nav-links {
        display: none;
    }

    .quem-somos {
        flex-direction: column;
    }

    .support-section {
        flex-direction: column;
        gap: 40px;
    }

    .support-benefits {
        grid-template-columns: 1fr;
    }

    .services-audience-section {
        flex-direction: column;
    }

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

    .about-top {
        flex-direction: column;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box:nth-child(2) {
        border-right: none;
    }

    .stat-box:nth-child(1),
    .stat-box:nth-child(2) {
        border-bottom: var(--border-width) solid var(--black);
    }

    .main-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-box:not(:last-child) {
        border-right: none;
        border-bottom: var(--border-width) solid var(--black);
    }
}