/* ==========================================================================
   PSICOLOGIA SEM ESCALAS | CHAYENE SANTOS
   Folha de Estilos Principal (Refatorada, Otimizada e Responsiva)
   ========================================================================== */

/* ========== RESET & VARIÁVEIS GLOBAIS ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores */
    --gold: #C8A97E;
    --gold-light: #D4BC96;
    --gold-dark: #A8885E;
    --black: #0A0A0A;
    --black-light: #141414;
    --black-medium: #1A1A1A;
    --white: #FAFAF9;
    --white-dim: #E8E6E1;
    --gray: #6B6B6B;
    --gray-light: #999999;
    --accent-cyan: #A8885E;
    --text-dim: #888894;

    /* Tipografia */
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --display: 'Bebas Neue', Impact, sans-serif;
    --font-display: 'Bebas Neue', sans-serif;

    /* Easing e Animação */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--black);
}

body {
    font-family: var(--sans);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

strong {
    color: #ffffff;
    font-style: italic;
}

/* Barra de Rolagem Personalizada */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ========== NAVEGAÇÃO ========== */
.nav {
    position: fixed;
    background: rgba(10, 10, 10, 0.9);
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s var(--ease-out-quart);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.nav-logo-text {
    margin: 0;
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.nav.scrolled {
    padding: 1rem 3rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 169, 126, 0.1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-light);
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-cta {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: all 0.4s ease;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--black);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu Mobile Overlay */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-family: var(--display);
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    color: var(--white-dim);
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--gold);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5rem 5rem;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.8s forwards;
}

.hero-tag-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-tag-text {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: var(--display);
    font-size: clamp(2rem, 5vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 2rem;
}

.hero-title span {
    display: block;
    opacity: 0;
    transform: translateY(60px);
}

.hero-title span:nth-child(1) {
    animation: fadeUp 1s var(--ease-out-expo) 1s forwards;
}

.hero-title span:nth-child(2) {
    animation: fadeUp 1s var(--ease-out-expo) 1.15s forwards;
}

.hero-title span:nth-child(3) {
    animation: fadeUp 1s var(--ease-out-expo) 1.3s forwards;
}

.hero-title .title-stroke {
    -webkit-text-stroke: 1.5px var(--white);
    color: transparent;
}

.hero-desc {
    font-size: 1rem;
    text-align: justify;
    line-height: 1.8;
    color: var(--gray-light);
    max-width: 700px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) 1.5s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out-expo) 1.7s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gold);
    color: var(--black);
    padding: 1.1rem 2.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-dark);
    transform: translateX(-101%);
    transition: transform 0.4s var(--ease-out-expo);
}

.btn-primary:hover::before {
    transform: translateX(0);
}

.btn-primary span,
.btn-primary .iconify {
    position: relative;
    z-index: 1;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1.1;
    animation: heroImgReveal 1.8s var(--ease-out-expo) 0.5s forwards;
    opacity: 0;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 30%),
        linear-gradient(to top, var(--black) 0%, transparent 20%);
    pointer-events: none;
}

/* ========== MARQUEE (LETREIRO DIGITAL) ========== */
.marquee-section {
    padding: 2rem 0;
    border-top: 1px solid rgba(200, 169, 126, 0.1);
    border-bottom: 1px solid rgba(200, 169, 126, 0.1);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0 2.5rem;
    white-space: nowrap;
}

.marquee-item span {
    font-family: var(--display);
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-transform: uppercase;
}

.marquee-item .dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========== SEÇÃO GESTÃO DE RISCO (PIPELINE) ========== */
.section-padding {
    padding: 70px 0 0;
    position: relative;
}

.container {
    margin: 0 auto;
    padding: 0 0;
    position: relative;
    z-index: 10;
}

.split-section {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 80px;
    align-items: center;
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 24px;
}

.tagline::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.section-info h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-info p {
    font-size: 1.125rem;
    color: var(--text-dim);
    line-height: 1.7;
}

.section-info.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 8rem;
    height: max-content;
    align-self: flex-start;
}

/* ========== CHECKLIST DE SEGURANÇA PSICOLÓGICA ========== */
.checklist-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 30px 25px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.checklist-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 40px;
    font-family: var(--serif, serif);
}

.header-eyebrow {
    color: var(--gold);
    font-size: 12px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.header-titulo {
    color: #ffffff;
    font-size: 40px;
    font-style: italic;
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
}

.checklist-lista {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 800px;
}

.check-item-card {
    display: flex;
    width: 100%;
    max-width: 800px;
    min-height: 65px;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 16px 20px;
    border-radius: 12px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.check-item-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(8px);
    border-color: rgba(200, 169, 126, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.check-item-card.marcado {
    border-color: rgba(200, 169, 126, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

.check-input {
    display: none;
}

.check-box-visual {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    margin-right: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.check-box-visual::after {
    content: "";
    position: absolute;
    display: none;
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid #0d0d0f;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.check-input:checked+.check-box-visual {
    background-color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(200, 169, 126, 0.4);
}

.check-input:checked+.check-box-visual::after {
    display: block;
}

.check-textos {
    display: flex;
    flex-direction: column;
}

/* Barra de Progresso e Status */
.progresso-container {
    width: 100%;
    max-width: 800px;
    margin: 10px auto 30px auto;
    font-family: var(--font-display, sans-serif);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
}

.status-label {
    color: var(--text-dim);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--serif, serif);
}

.status-mensagem {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.4s ease;
    font-family: var(--serif, serif);
}

.barra-fundo {
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.barra-preenchimento {
    height: 100%;
    width: 0%;
    background-color: var(--gold);
    border-radius: 6px;
    transition: width 0.5s ease-in-out;
}

/* Cores Dinâmicas dos Níveis de Status do Checklist */
.status-mensagem.nivel-0 {
    color: #ff4d4d;
}

.status-mensagem.nivel-1,
.status-mensagem.nivel-2,
.status-mensagem.nivel-3,
.status-mensagem.nivel-4 {
    color: #f39c12;
}

.status-mensagem.nivel-5 {
    color: #4dff88;
}

/* ========== GALERIA DE FOTOS (CARROSSEL) ========== */
.carrossel {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.carrossel-track {
    display: flex;
    height: 100%;
    width: max-content;
    animation: rolar 30s linear infinite;
}

.carrossel-track img {
    height: 100%;
    width: auto;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 8px;
    display: block;
    cursor: pointer;
    transition: filter 0.35s ease, transform 0.35s ease;
    filter: brightness(1);
}

/* ========== SEÇÃO DE CONTATOS ========== */
.contato-container {
    padding: 80px;
    background-color: #0d0d0f;
    font-family: var(--font-display, sans-serif);
    text-align: center;
}

.contato-titulo {
    color: #ffffff;
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contato-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    padding: 30px 25px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
}

.contato-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
    border-color: rgba(200, 169, 126, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-eyebrow {
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-family: var(--font-display, sans-serif);
}

.card-title {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: var(--font-display, TimesNewRoman);
}

.card-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.625;
}

/* ========== RODAPÉ (FOOTER) ========== */
.footer {
    padding: 5rem 5rem 2rem;
    border-top: 1px solid rgba(200, 169, 126, 0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand-name {
    font-family: var(--display);
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-brand-desc {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--gray);
    max-width: 300px;
    margin-bottom: 2rem;
}

.footer-col-title {
    font-family: var(--display);
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul a {
    font-size: 0.85rem;
    color: var(--gray);
    transition: color 0.3s ease;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-contact-item .iconify {
    font-size: 1.1rem;
    color: var(--gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact-item p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(200, 169, 126, 0.1);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.1em;
}

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

.footer-bottom-links a {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ========== ANIMAÇÕES & EFEITOS ========== */
.reveal {
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroImgReveal {
    from {
        opacity: 0;
        scale: 1.2;
    }

    to {
        opacity: 1;
        scale: 1.05;
    }
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes rolar {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   MEDIA QUERIES - RESPONSIVIDADE PROFISSIONAL
   Adaptações específicas para tablets, celulares e dispositivos compactos
   ========================================================================== */

/* --- TABLETS E LAPTOPS COMPACTOS (Até 1024px) --- */
@media (max-width: 1024px) {

    /* Ajuste de espaçamento da navegação */
    .nav {
        padding: 1.25rem 2rem;
    }

    .nav.scrolled {
        padding: 1rem 2rem;
    }

    /* Hero empilhado verticalmente mantendo proporção no tablet */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        padding: 8rem 3rem 4rem;
        min-height: auto;
        justify-content: flex-start;
    }

    .hero-image {
        height: 480px;
    }

    /* Seção dividida (Gestão de Risco) muda para 1 coluna */
    .split-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-info.sticky {
        position: static;
    }

    .section-info h2 {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 2rem;
    }

    /* Checklist adaptado para largura total disponível */
    .checklist-container {
        padding: 30px 20px;
    }

    /* Carrossel de fotos ajustado para altura moderada */
    .carrossel {
        height: 400px;
    }

    /* Grid do Rodapé em 2 colunas */
    .footer {
        padding: 4rem 2.5rem 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* --- SMARTPHONES E TABLETS PEQUENOS (Até 768px) --- */
@media (max-width: 768px) {

    /* Menu Hamburguer ativado e links desktop ocultados */
    .nav {
        padding: 1rem 1.5rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-logo-text {
        font-size: 0.9rem;
    }

    .mobile-nav a {
        font-size: 2rem;
    }

    /* Hero: tipografia legível e botões em tela cheia */
    .hero-content {
        padding: 6.5rem 1.5rem 3rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
        margin-bottom: 1.5rem;
    }

    .hero-tag {
        margin-bottom: 1.75rem;
        gap: 0.75rem;
    }

    .hero-tag-text {
        font-size: 0.65rem;
        letter-spacing: 0.2em;
    }

    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.75;
        text-align: left;
        max-width: 100%;
        margin-bottom: 2.5rem;
    }

    .hero-actions {
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 1.1rem 1.5rem;
        font-size: 0.75rem;
    }

    .hero-image {
        height: 380px;
    }

    /* Letreiro Marquee mais compacto no mobile */
    .marquee-section {
        padding: 1.25rem 0;
    }

    .marquee-item {
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .marquee-item span {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    /* Seção Gestão de Risco no Mobile */
    .section-padding {
        padding: 50px 0 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    .split-section {
        gap: 35px;
    }

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

    .section-info p {
        font-size: 1rem;
        text-align: left !important;
    }

    /* Checklist Responsivo sem transbordamento horizontal */
    .checklist-container {
        padding: 25px 15px;
        margin: 0 0.5rem;
    }

    .header-titulo {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .check-item-card {
        padding: 14px 16px;
        min-height: auto;
    }

    .check-item-card:hover {
        transform: translateX(4px);
    }

    .check-box-visual {
        margin-right: 16px;
        width: 24px;
        height: 24px;
    }

    .check-box-visual::after {
        left: 7px;
        top: 3px;
        width: 5px;
        height: 11px;
    }

    .card-title {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .progresso-container {
        margin-bottom: 20px;
    }

    .status-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .status-label {
        font-size: 12px;
    }

    .status-mensagem {
        font-size: 14px;
    }

    /* Carrossel ajustado para proporção mobile */
    .carrossel {
        height: 320px;
    }

    /* Seção de Contatos ajustada */
    .contato-container {
        padding: 50px 1.25rem;
    }

    .contato-titulo {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
        margin-bottom: 30px;
    }

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

    .contato-card {
        padding: 24px 20px;
    }

    /* Rodapé empilhado em 1 coluna */
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.25rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand-name {
        font-size: 1.6rem;
    }

    .footer-brand-desc {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.25rem;
    }
}

/* --- DISPOSITIVOS ULTRA COMPACTOS (Até 480px) --- */
@media (max-width: 480px) {
    .hero-content {
        padding: 5.5rem 1rem 2rem;
    }

    .hero-tag-text {
        font-size: 0.58rem;
        letter-spacing: 0.15em;
    }

    .hero-title {
        font-size: clamp(1.85rem, 8.5vw, 2.4rem);
    }

    .hero-desc {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .hero-image {
        height: 300px;
    }

    .btn-primary {
        font-size: 0.68rem;
        padding: 0.95rem 1.2rem;
        letter-spacing: 0.15em;
    }

    .tagline {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .section-info h2 {
        font-size: 1.7rem;
    }

    .checklist-container {
        padding: 20px 10px;
        margin: 0;
        border-radius: 8px;
    }

    .header-titulo {
        font-size: 1.6rem;
    }

    .check-item-card {
        padding: 12px 12px;
        border-radius: 8px;
    }

    .card-title {
        font-size: 0.92rem;
        line-height: 1.35;
    }

    .carrossel {
        height: 250px;
    }

    .contato-card {
        padding: 20px 16px;
    }

    .card-desc {
        font-size: 13px;
    }
}