/* 
   Tropicﾃ｡lia Zine Analﾃｳgico - Design System Extremo
   Foco em Colagem, Risografia e Texturas Manuais
*/

:root {
    /* Cores Obrigatﾃｳrias */
    --color-primary: #E2B13C;
    /* Mostarda */
    --color-secondary: #D95D39;
    /* Terracota */
    --color-tertiary: #2F5938;
    /* Verde Mata */
    --color-accent: #3A6EA5;
    /* Azul Retrﾃｴ */
    --color-bg: #EAE3C8;
    /* Creme Envelhecido Quente (combina com fundo do Jung) */
    --color-text: #2A2A2A;
    /* Texto Preto Carimbo */

    /* Tipografia */
    --font-heading: 'Bangers', cursive;
    --font-heading-alt: 'Permanent Marker', cursive;
    --font-body: 'Lora', serif;
    --font-typewriter: 'Courier Prime', monospace;
}

/* CTA ZINE ANALÓGICO */
.cta-zine {
    margin: 60px 0;
    padding: 40px;
    background: var(--color-bg);
    border: 4px solid var(--color-text);
    box-shadow: 15px 15px 0px var(--color-secondary);
    position: relative;
    text-align: center;
    background-image: url('https://www.transparenttextures.com/patterns/recycled-paper.png');
}

.cta-zine .fita-crepe {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 150px;
    height: 35px;
    background: rgba(226, 177, 60, 0.4);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.cta-zine h4 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-tertiary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.cta-zine p {
    font-family: var(--font-typewriter);
    font-size: 1.1rem !important;
    margin-bottom: 25px !important;
    color: var(--color-text) !important;
    text-align: center !important;
}

.cta-zine .btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-secondary);
    color: white;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    border: 2px solid var(--color-text);
    box-shadow: 5px 5px 0px var(--color-text);
    transform: rotate(1deg);
    transition: 0.3s;
}

.cta-zine .btn-primary:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 2px 2px 0px var(--color-text);
}

@media (max-width: 768px) {
    .cta-zine {
        padding: 30px 20px;
        margin: 40px 0;
    }

    .cta-zine h4 {
        font-size: 1.8rem;
    }
}


/* Reset Bﾃ｡sico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* Global Typography: Distinct fonts per heading level */
h1 {
    font-family: var(--font-heading-alt);
    /* Permanent Marker - Logo */
    font-weight: normal;
}

h2 {
    font-family: var(--font-heading);
    /* Bangers - Section Titles */
    font-weight: normal;
}

h3 {
    font-family: var(--font-heading-alt);
    /* Permanent Marker - Subtitles / Cards */
    font-weight: normal;
}

h4,
h5,
h6 {
    font-family: var(--font-typewriter);
    /* Courier Prime - Technical/Small details */
    font-weight: bold;
}

/* 0. BODY E NOISE/GRAIN OVERLAY */
body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-size: 18px;
}

/* Noise overlay aplicado no body inteiro - Pilar 8 */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9999;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAA6f9Y5AAAABlBMVEUAAAD///+l2Z/dAAAAbUlEQVR4XqXQSwoAIAhF0Ufx/ldWi4IsfBfOfYsgmllcl6BfK9CSAnS7A7S7A7S7A7S7A7S7A7S7A7S7A7S7A7S7A7S7A7S7A7S7A7S7A7S7A7S7A7S7A7S7A7S7A7S7A7S7A7S7A7S7A7S4B9pYArwE8RBAAAAAElFTkSuQmCC');
    opacity: 0.1;
}

/* Base de layout "Broken Grid" */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 150px;
    /* espacamento pro header fixo */
    position: relative;
    z-index: 10;
}

.colagem-container {
    position: relative;
    width: 100%;
    margin-bottom: 80px;
}

/* 1. HEADER & NAVEGAﾃ�グ */
.zine-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    padding: 10px 0;
    /* Adicionado blur sutil para destacar do fundo */
    backdrop-filter: blur(3px);
    background-color: rgba(234, 227, 200, 0.2);
}

.zine-header.scrolled {
    background-color: #2F5938 !important;
    /* var(--color-tertiary) */
    border-bottom: 5px solid var(--color-text);
    box-shadow: 4px 6px 0px var(--color-primary);
    backdrop-filter: none;
    background-image: none;
    /* Removed broken external dependency */
    opacity: 1;
}



.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zine-header h1,
.logo-text {
    font-family: var(--font-heading-alt);
    font-size: clamp(1rem, 4vw, 24px);
    color: var(--color-text);
    /* Standard dark for top position */
    text-transform: uppercase;
    text-shadow: none;
    line-height: 1.1;
    transition: all 0.3s ease-in-out;
}

.zine-header.scrolled .logo-text {
    color: var(--color-primary);
    text-shadow: none;
}


/* Hamburguer Mobile */
.mobile-menu-toggle {
    display: none;
    position: relative;
    width: 50px;
    /* Slightly larger */
    height: 50px;
    background-color: var(--color-primary);
    /* Use primary color for visibility */
    border: 3px solid var(--color-text) !important;
    box-shadow: 4px 4px 0px var(--color-text) !important;
    cursor: pointer !important;
    z-index: 1100;
    padding: 10px;
    border-radius: 4px;
}


.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--color-text);
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    /* Reduced gap to keep items side-by-side */
    flex-wrap: nowrap;
    /* Prevent wrapping */
}

.main-nav a {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    padding: 5px 12px;
    white-space: nowrap;
    border: 2px solid transparent;
    cursor: pointer;
    text-shadow: 1px 1px 0px #fff;
    /* Simplified for clarity */
}


.zine-header.scrolled .main-nav a {
    color: var(--color-bg);
    text-shadow: none;
}


.main-nav a:active,
.btn-primary:active,
.btn-submit:active {
    transform: translate(4px, 4px) rotate(0deg) !important;
    box-shadow: 0px 0px 0px transparent !important;
}

.main-nav a:hover {
    transform: rotate(-2deg) translateY(-2px);
    background-color: var(--color-primary) !important;
    color: var(--color-text) !important;
    border: 3px solid var(--color-text) !important;
    box-shadow: 4px 4px 0px var(--color-secondary) !important;
}

.nav-highlight {
    transform: rotate(-2deg) translateY(-2px);
    background-color: var(--color-primary) !important;
    color: var(--color-text) !important;
    border: 3px solid var(--color-text) !important;
    box-shadow: 4px 4px 0px var(--color-secondary) !important;
    animation: menu-wiggle 3s infinite ease-in-out;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-highlight:hover {
    transform: translate(2px, 2px) rotate(0deg) !important;
    background-color: var(--color-secondary) !important;
    color: var(--color-bg) !important;
    box-shadow: 0px 0px 0px transparent !important;
    animation: none;
}

@keyframes menu-wiggle {

    0%,
    100% {
        transform: rotate(-2deg) translateY(-2px) scale(1);
    }

    50% {
        transform: rotate(2deg) translateY(-2px) scale(1.05);
    }
}


/* 2. HERO SECTION */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* Remove padding to allow full bleed */
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: visible;
    background-color: var(--color-bg);
}

.hero-collage-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.collage-item {
    position: absolute;
    background: white;
    padding: 10px 10px 30px 10px;
    border: 2px solid var(--color-text);
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    max-width: 300px;
    pointer-events: auto;
}

.collage-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(0.2) contrast(1.1);
}

.item-jung {
    top: 50%;
    transform: translateY(-50%) rotate(-4deg);
    left: 5%;
    width: 350px;
    max-width: 35vw;
    z-index: 2;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.item-camila {
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    right: 2%;
    width: 400px;
    max-width: 40vw;
    z-index: 2;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 115% auto;
    /* Room for parallax travel */
    background-position: center 30%;
    background-attachment: scroll;
    /* Controlled by JS */
    z-index: 1;
    filter: sepia(0.2) contrast(1.1) brightness(0.85);
    opacity: 0.95;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
}


.hero-content {
    position: relative;
    z-index: 10;
    width: fit-content;
    /* Box wraps text tightly */
    max-width: 85%;
    /* Safety for small screens */
    text-align: center;
    background: rgba(234, 227, 200, 0.95);
    padding: 60px 50px;
    /* More breathing room inside */
    border: 4px solid var(--color-text);
    box-shadow: 15px 15px 0px var(--color-primary);
    border-radius: 2px;
    margin: 0 auto;
}


.title-risograph {
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 0.9;
    color: var(--color-bg);
    /* Falha de impressﾃ｣o Risografia */
    text-shadow: 4px 4px 0px var(--color-secondary),
        -2px -2px 0px var(--color-text);
    -webkit-text-stroke: 3px var(--color-text);
    margin-bottom: 40px;
}

/* Botﾃｵes Padronizados - Zine Style */
.btn-primary,
.btn-submit {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    padding: 15px 40px;
    text-decoration: none;
    border: 4px solid var(--color-text);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    background-color: var(--color-primary);
    /* Yellow Default */
    color: var(--color-text);
    /* Dark text on yellow */
    transform: rotate(1deg);
    box-shadow: 6px 6px 0px var(--color-text);
    text-align: center;
    border-radius: 2px 12px 3px 8px;
}


.btn-primary {
    animation: btn-pulse 2s infinite alternate;
}

@keyframes btn-pulse {
    0% {
        transform: rotate(-2deg) scale(1);
        box-shadow: 8px 8px 0px 0px var(--color-secondary);
    }

    100% {
        transform: rotate(-2deg) scale(1.05);
        box-shadow: 12px 12px 0px 0px var(--color-secondary);
    }
}

.btn-primary:active,
.btn-primary:hover,
.btn-submit:active,
.btn-submit:hover,
.btn-accent:active,
.btn-accent:hover {
    transform: translate(4px, 4px) rotate(0deg) !important;
    box-shadow: 0px 0px 0px var(--color-text) !important;
    background-color: var(--color-tertiary) !important;
    /* Green Hover */
    color: var(--color-bg) !important;
}

.btn-accent {
    background-color: var(--color-accent);
    color: white;
    transform: rotate(1deg);
}


.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 1;
}

/* Blob Orgﾃ｢nico para o SVG */
.blob-bg {
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 10px 10px 0px var(--color-text);
}

.terracota-blob {
    background-color: var(--color-tertiary);
    /* O verde mata destaca bem */
    border-radius: 41% 59% 46% 54% / 54% 39% 61% 46%;
    /* Forma orgﾃ｢nica */
    border: 4px solid var(--color-text);
    transform: rotate(-5deg);
}

.terracota-blob .icon-brain {
    stroke: var(--color-bg);
    transform: rotate(5deg) scale(1.5);
    /* Desenho reto dentro do blob torto */
}


/* 3. SEﾃ�グ DE ATENDIMENTO */
.atendimento-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    max-width: 1300px;
    margin: -100px auto 120px;
    justify-content: center;
    gap: 50px;
    z-index: 5;
    padding: 0 40px;
}

.zine-card {
    background-color: var(--color-bg);
    padding: 45px 35px;
    width: 100%;
    position: relative;
    border: 4px solid var(--color-text);
    background-image: none;
    /* Removed broken PNG dependency */
    transition: transform 0.3s ease;
}

.zine-card h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--color-tertiary);
}

.zine-card p {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.presencial-card {
    transform: rotate(1.5deg);
    box-shadow: 12px 12px 0px var(--color-primary);
    border-radius: 5px 15px 3px 8px;
}

.online-card {
    transform: rotate(-1.5deg);
    box-shadow: -12px 12px 0px var(--color-secondary);
    border-radius: 12px 2px 8px 4px;
}

.fita-crepe {
    position: absolute;
    top: -15px;
    left: 20%;
    width: 100px;
    height: 40px;
    background-color: rgba(234, 227, 200, 0.7);
    border-left: 2px dashed rgba(0, 0, 0, 0.1);
    border-right: 2px dashed rgba(0, 0, 0, 0.1);
    transform: rotate(-5deg);
    z-index: 10;
    pointer-events: none;
    backdrop-filter: blur(2px);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.pin-decor {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
}



.zine-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.1;
}

.zine-card p {
    font-size: 1.2rem;
    line-height: 1.5;
}


/* 4. SEﾃ�グ SOBRE */
.sobre-section {
    padding: 120px 40px;
    /* Aumentado o padding para garantir que nﾃ｣o fique sob o card de atendimento */
    position: relative;
    z-index: 10;
    /* Aumentado o z-index para garantir visibilidade */
    background-color: var(--color-bg);
}

.text-block {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    font-size: 1.4rem;
    line-height: 1.8;
}

.section-title {
    font-size: 4rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--color-text);
    text-shadow: 3px 3px 0px var(--color-primary);
    transform: rotate(-1deg);
}

.estrela-decor {
    position: absolute;
    top: -30px;
    left: -50px;
    font-size: 60px;
    color: var(--color-secondary);
    text-shadow: 2px 2px 0px var(--color-text);
    transform: rotate(15deg);
}

.processo-galeria {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.polaroid-pequena {
    background: var(--color-bg);
    padding: 10px 10px 30px 10px;
    border: 3px solid var(--color-text);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.15);
    max-width: 320px;
}

.polaroid-pequena img {
    width: 100%;
    height: auto;
    filter: sepia(0.3) contrast(1.2);
}

.polaroid-hillman {
    transform: rotate(-3deg);
}

.polaroid-nise {
    transform: rotate(4deg);
    margin-top: 30px;
    /* Desalinhamento vertical intencional */
}

.text-block p {
    margin-bottom: 25px;
}

/* Highlight estilo marca-texto manual */
.highlight {
    background-color: var(--color-primary);
    padding: 2px 8px;
    color: var(--color-text);
    font-weight: 700;
    /* Clip-path irregular para nﾃ｣o ser um retﾃ｢ngulo perfeito */
    clip-path: polygon(2% 0%, 98% 5%, 100% 95%, 0% 100%);
    display: inline-block;
    transform: rotate(-1deg);
}

.grafismo-manual {
    font-size: 2rem;
    text-align: center;
    color: var(--color-tertiary);
    font-weight: bold;
    margin-top: 40px;
    letter-spacing: 10px;
}


/* 6. CONATATO (FORMULﾃヽIO E MAPA ANALﾃ敵ICOS) */
.contato-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px;
    padding: 50px 20px 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.ficha-medica {
    background: var(--color-bg);
    flex: 1;
    min-width: 320px;
    max-width: 550px;
    padding: 50px;
    border: 4px solid var(--color-text);
    box-shadow: 12px 12px 0px var(--color-secondary);
    border-radius: 2px 5px 3px 4px;
    transform: rotate(1.5deg);
    position: relative;
    background-image: linear-gradient(0deg, transparent 95%, rgba(0, 0, 0, 0.05) 100%);
    background-size: 100% 30px;
    /* linhas sutis simulando caderno */
}

/* Pedaco de fita crepe colando a ficha */
.fita-crepe {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: 150px;
    height: 40px;
    background-color: rgba(230, 220, 180, 0.85);
    /* Tom amarelado transparente */
    border: 1px dashed rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.form-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: left;
    color: var(--color-text);
}

.analog-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.input-group {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    /* Hax CSS para o label subir no placeholder-shown */
}

/* Inputs como linhas de preenchimento manual */
.input-group input,
.input-group textarea {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: transparent;
    border-bottom: 3px dashed var(--color-text);
    padding: 5px 0;
    font-family: var(--font-typewriter);
    /* Maquina de escrever */
    font-size: 1.5rem;
    color: var(--color-accent);
    /* Tinta de caneta azul */
    outline: none;
    border-radius: 0;
}

.input-group textarea {
    resize: vertical;
    border: 3px dashed var(--color-text);
    /* O textarea precisa ser fechado pra ter espaﾃｧo no caderno */
    border-radius: 2px 6px 3px 5px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.4);
}

/* Labels em caixa alta parecendo selo tipogrﾃ｡fico */
.input-group label {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 5px;
    transition: all 0.2s;
    letter-spacing: 1px;
}

/* Container do Mapa Analﾃｳgico */
.mapa-container {
    flex: 1;
    min-width: 320px;
    max-width: 550px;
    background: var(--color-bg);
    padding: 20px 20px 40px 20px;
    /* Polaroid bottom heavy padding */
    border: 3px solid var(--color-text);
    box-shadow: -10px 12px 0px rgba(0, 0, 0, 0.4);
    transform: rotate(-1.5deg);
    position: relative;
    display: flex;
    flex-direction: column;
    background-image: url('../../../assets/patterns/notebook.png');
}


.mapa-container .fita-crepe {
    top: -25px;
    left: auto;
    right: 20px;
    transform: rotate(6deg);
    width: 120px;
    background-color: rgba(220, 200, 160, 0.95);
    border: 1px dashed rgba(0, 0, 0, 0.3);
}

.mapa-container iframe {
    width: 100%;
    flex-grow: 1;
    min-height: 400px;
    border: 3px solid var(--color-text) !important;
    filter: sepia(0.4) contrast(1.1) brightness(0.9);
    /* Stronger vintage filter */
}

/* Large inline images for Jung/Hillman in about section (PARALLAX) */
.large-inline-img {
    display: block;
    width: 100vw;
    max-width: 100vw;
    height: 85vh;
    min-height: 700px;
    margin-left: calc(50% - 50vw);
    position: relative;
    margin-top: 60px;
    margin-bottom: 60px;
    background-color: #EAE3C8;
    background-size: 130% auto;
    /* Boosted for intense parallax travel */
    background-position: center 30%;
    /* Start offset for parallax travel */
    background-attachment: scroll;
    /* JS handles the parallax now */
    padding: 0;
    border: 3px solid var(--color-text);
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.15);
    filter: sepia(0.05) contrast(1.05);
    overflow: hidden;
}




.img-jung {
    /* Keep rotations but don't break centering */
    transform: rotate(-2deg);
    box-shadow: 8px 8px 0px var(--color-primary);
}

.img-hillman {
    transform: rotate(2deg);
    box-shadow: 8px 8px 0px var(--color-secondary);
}



/* 7. NOVA SEﾃ�グ: SOBRE A CAMILA */
.sobre-mim-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 120px 40px;
    background-color: var(--color-secondary);
    color: var(--color-bg);
    position: relative;
    width: 100%;
    /* No breakout needed as it's outside wrapper */
    overflow: visible !important;
    z-index: 10;
}


.sobre-mim-text p {
    color: var(--color-bg);
    /* Ensure readability */
}

.sobre-mim-text {
    max-width: 500px;
}

.sobre-mim-text h2 {
    font-size: 5rem;
    line-height: 0.9;
    margin-bottom: 30px;
    color: var(--color-bg);
    text-shadow: 4px 4px 0px var(--color-text);
    /* Darker shadow for orange bg */
}


.sobre-mim-foto {
    flex: 1;
    max-width: 450px;
}

.polaroid-cutout {
    background: #fff;
    padding: 15px 15px 50px 15px;
    border: 3px solid var(--color-text);
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.2);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
    visibility: visible !important;
    /* Force visibility */
    opacity: 1 !important;
    /* Force visibility */
}


.polaroid-cutout:hover {
    transform: rotate(0deg) scale(1.02);
}

.polaroid-cutout img {
    width: 100%;
    height: auto;
    filter: sepia(0.1) contrast(1.1);
    border: 1px solid #ddd;
}

@media (max-width: 900px) {
    .sobre-mim-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .sobre-mim-text h2 {
        font-size: 3.5rem;
    }
}

/* Fluidity & Reveal Effects */
.reveal {
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    /* More aggressive entry */
    transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease-out;
    will-change: transform, opacity;
}



/* Fallback if JS observer is not yet triggerd or fails */
.reveal:not(.active) {
    visibility: hidden;
}

.reveal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) rotate(var(--rot, 0deg)) scale(1);
}

.slide-left {
    transform: translateX(-100px) translateY(40px);
}

.slide-right {
    transform: translateX(100px) translateY(40px);
}

.reveal.active.slide-left,
.reveal.active.slide-right {
    transform: translateX(0) translateY(0) rotate(var(--rot, 0deg));
}


/* Staggered delays for child elements if needed */
.reveal.delay-1 {
    transition-delay: 0.1s;
}

.reveal.delay-2 {
    transition-delay: 0.2s;
}

.reveal.delay-3 {
    transition-delay: 0.3s;
}

section,
main,
.content-wrapper,
.atendimento-section {
    position: relative;
    padding: 80px 20px;
    width: 100%;
    overflow: visible !important;
    /* AGGRESSIVE PASS: Kill all rogue sliders */
    height: auto !important;
    /* Prevent height constraints */
}

.content-wrapper {
    overflow: visible !important;
}

/* 5. FOOTER ZINE */
.zine-footer {
    background-color: var(--color-tertiary);
    color: var(--color-bg);
    position: relative;
    padding: 80px 40px 40px 40px;
    margin-top: 100px;
    border-top: 5px solid var(--color-text);
    box-shadow: 0px -5px 0px var(--color-primary);
}

/* Borda superior rasgada */
.footer-borda-rasgada {
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: var(--color-tertiary);
    /* Clip-path de serra */
    clip-path: polygon(0% 50%, 2% 0%, 4% 50%, 6% 0%, 8% 50%, 10% 0%, 12% 50%, 14% 0%, 16% 50%, 18% 0%, 20% 50%, 22% 0%, 24% 50%, 26% 0%, 28% 50%, 30% 0%, 32% 50%, 34% 0%, 36% 50%, 38% 0%, 40% 50%, 42% 0%, 44% 50%, 46% 0%, 48% 50%, 50% 0%, 52% 50%, 54% 0%, 56% 50%, 58% 0%, 60% 50%, 62% 0%, 64% 50%, 66% 0%, 68% 50%, 70% 0%, 72% 50%, 74% 0%, 76% 50%, 78% 0%, 80% 50%, 82% 0%, 84% 50%, 86% 0%, 88% 50%, 90% 0%, 92% 50%, 94% 0%, 96% 50%, 98% 0%, 100% 50%, 100% 100%, 0% 100%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-info h3 {
    font-family: var(--font-heading-alt);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.footer-info p {
    font-size: 1.2rem;
    font-family: var(--font-typewriter);
    /* Estilo maquina no footer fica legal */
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 20px;
}

/* Stamps de Redes Sociais no Footer */
.social-stamp {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    background-color: var(--color-bg);
    padding: 10px 25px;
    text-decoration: none;
    border: 3px solid var(--color-text);
    border-radius: 4px 10px 3px 8px;
    box-shadow: 4px 4px 0px var(--color-tertiary);
    transform: rotate(2deg);
    transition: all 0.2s;
    display: inline-block;
}

.social-stamp:hover {
    background-color: var(--color-primary);
    transform: rotate(-3deg) scale(1.1);
}

/* Responsividade Zine (Mobile) */
@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex !important;
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        flex-shrink: 0 !important;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        background-color: var(--color-primary) !important;
        z-index: 9999 !important;
    }



    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-tertiary);
        padding-top: 100px;
        transition: 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1050;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0;
    }

    .main-nav a {
        font-size: 2.2rem;
        color: var(--color-bg) !important;
        text-align: center;
        border: none !important;
        box-shadow: none !important;
    }

    /* Animaﾃｧﾃ｣o Hamburguer Mobile */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    /* Ajuste Hero Collage no Mobile */
    .hero-section {
        min-height: 100vh;
        padding: 20px;
        flex-direction: column;
        justify-content: center;
        padding-top: 120px;
    }

    .item-jung {
        top: 15%;
        left: 50%;
        transform: translateX(-50%) rotate(-3deg);
        width: 300px;
        max-width: 90vw;
    }

    .large-inline-img {
        max-width: 95%;
        height: 50vh;
        min-height: 400px;
        margin: 20px auto;
        padding: 5px 5px 25px 5px;
        left: auto;
        margin-left: auto;
    }



    /* Cards e Grid no Mobile */
    .atendimento-section {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 40px;
    }


    .zine-card {
        transform: rotate(0deg) !important;
        margin-bottom: 20px;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .title-risograph {
        font-size: 2.8rem;
    }

    .hero-content {
        max-width: 75% !important;
        /* Narrower to show more background */
        padding: 40px 15px !important;
        /* Tighter padding */
        box-shadow: 10px 10px 0px var(--color-primary) !important;
    }

    .hero-content h2 {
        font-size: 2.2rem !important;
        /* Resize for the narrower box */
    }

    .hero-content p {
        font-size: 0.95rem !important;
    }

    .btn-primary,
    .btn-submit {
        font-size: 1.1rem !important;
        padding: 12px 25px !important;
        width: auto !important;
        min-width: 180px;
    }

    .logo-text {
        font-size: 0.8rem !important;
        max-width: 80%;
    }

    /* Prevent horizontal scroll */
    html,
    body {
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }

    .estrela-decor {
        max-width: 50px;
        overflow: hidden;
    }
}



@media (max-width: 600px) {
    .logo-text {
        font-size: 0.95rem !important;
        max-width: 70%;
    }

    .logo-text span {
        display: block;
        font-size: 0.75rem;
        opacity: 0.9;
    }

    .header-inner {
        padding: 10px 20px;
    }
}

/* 5. SEﾃ�グ DE BLOG */
.blog-section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
}

.blog-card {
    background-color: var(--color-bg);
    border: 3px solid var(--color-text);
    padding: 30px;
    position: relative;
    box-shadow: 10px 10px 0px var(--color-text);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-image: url('https://www.transparenttextures.com/patterns/handmade-paper.png');
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10;
    box-shadow: 15px 15px 0px var(--color-secondary);
}

.post-date {
    font-family: var(--font-typewriter);
    font-size: 0.9rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-weight: bold;
}

.blog-card h3 {
    font-family: var(--font-heading-alt);
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--color-text);
}

.blog-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-decoration: none;
    color: var(--color-tertiary);
    align-self: flex-start;
    border-bottom: 2px dashed var(--color-tertiary);
    transition: all 0.2s;
}

.read-more:hover {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
    padding-left: 10px;
}

@media (max-width: 900px) {
    .blog-section {
        padding: 60px 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Ajuste Hero Collage no Mobile */
    .hero-section {
        min-height: 100vh;
        padding: 20px;
        flex-direction: column;
        justify-content: center;
        padding-top: 120px;
    }

    .item-jung {
        top: 15%;
        left: 50%;
        transform: translateX(-50%) rotate(-3deg);
        width: 300px;
        max-width: 90vw;
    }

    .large-inline-img {
        max-width: 95%;
        height: 50vh;
        min-height: 400px;
        margin: 20px auto;
        padding: 5px 5px 25px 5px;
        left: auto;
        margin-left: auto;
    }

    /* Cards e Grid no Mobile */
    .atendimento-section {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 40px;
    }

    .zine-card {
        transform: rotate(0deg) !important;
        margin-bottom: 20px;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .title-risograph {
        font-size: 2.8rem;
    }

    .hero-content {
        max-width: 75% !important;
        padding: 40px 15px !important;
        box-shadow: 10px 10px 0px var(--color-primary) !important;
    }

    .hero-content h2 {
        font-size: 2.2rem !important;
    }

    .hero-content p {
        font-size: 0.95rem !important;
    }

    .btn-primary,
    .btn-submit {
        font-size: 1.1rem !important;
        padding: 12px 25px !important;
        width: auto !important;
        min-width: 180px;
    }

    .logo-text {
        font-size: 0.8rem !important;
        max-width: 80%;
    }

    html,
    body {
        overflow-x: hidden;
        position: relative;
        width: 100%;
    }

    .estrela-decor {
        max-width: 50px;
        overflow: hidden;
    }
}

@media (max-width: 600px) {
    .logo-text {
        font-size: 0.95rem !important;
        max-width: 70%;
    }

    .logo-text span {
        display: block;
        font-size: 0.75rem;
        opacity: 0.9;
    }

    .header-inner {
        padding: 10px 20px;
    }
}

/* 5. SEÇÃO DE BLOG */
.blog-section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
}

.blog-card {
    background-color: var(--color-bg);
    border: 3px solid var(--color-text);
    padding: 30px;
    position: relative;
    box-shadow: 10px 10px 0px var(--color-text);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-image: url('https://www.transparenttextures.com/patterns/handmade-paper.png');
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10;
    box-shadow: 15px 15px 0px var(--color-secondary);
}

.post-date {
    font-family: var(--font-typewriter);
    font-size: 0.9rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-weight: bold;
}

.blog-card h3 {
    font-family: var(--font-heading-alt);
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--color-text);
}

.blog-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-decoration: none;
    color: var(--color-tertiary);
    align-self: flex-start;
    border-bottom: 2px dashed var(--color-tertiary);
    transition: all 0.2s;
}

.read-more:hover {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
    padding-left: 10px;
}

/* GRID DE INDICAÇÕES (STARK ZINE STYLES) */
.indicacoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 20px 0;
}

@media (max-width: 900px) {
    .indicacoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .indicacoes-grid {
        grid-template-columns: 1fr;
    }
}

.indicacao-item {
    background: white;
    border: 3px solid var(--color-text);
    padding: 30px;
    position: relative;
    box-shadow: 8px 8px 0px var(--color-text);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background-image: url('https://www.transparenttextures.com/patterns/recycled-paper.png');
}

.indicacao-item:nth-child(3n+1) {
    transform: rotate(-1.5deg);
    box-shadow: 10px 10px 0px var(--color-primary);
}

.indicacao-item:nth-child(3n+2) {
    transform: rotate(2deg);
    box-shadow: 10px 10px 0px var(--color-secondary);
}

.indicacao-item:nth-child(3n+3) {
    transform: rotate(-1deg);
    box-shadow: 10px 10px 0px var(--color-tertiary);
}

.indicacao-item:hover {
    transform: rotate(0deg) scale(1.05) translateY(-5px);
    z-index: 20;
}

.indicacao-item p {
    font-family: var(--font-typewriter);
    font-size: 1.1rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    text-align: center;
    color: var(--color-text);
}

.indicacao-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.indicacao-icon svg {
    width: 100%;
    height: 100%;
}

.indicacao-item:nth-child(5n+1) .indicacao-icon {
    color: var(--color-secondary);
}

.indicacao-item:nth-child(5n+2) .indicacao-icon {
    color: var(--color-tertiary);
}

.indicacao-item:nth-child(5n+3) .indicacao-icon {
    color: var(--color-accent);
}

.indicacao-item:nth-child(5n+4) .indicacao-icon {
    color: var(--color-primary);
}

.indicacao-item:nth-child(5n+5) .indicacao-icon {
    color: #8B4513;
}

/* GRID DE TEORIA (CARDS JAMES HILLMAN) */
.teoria-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 900px) {
    .teoria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .teoria-grid {
        grid-template-columns: 1fr;
    }
}

.teoria-card {
    background: #fff;
    border: 3px solid var(--color-text);
    padding: 35px 25px;
    position: relative;
    box-shadow: 10px 10px 0px var(--color-text);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    background-image: url('https://www.transparenttextures.com/patterns/notebook-darker.png');
}

.teoria-card h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
    line-height: 1.1;
    text-transform: uppercase;
}

.teoria-card p {
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

.teoria-card:nth-child(1) {
    transform: rotate(-1deg);
    border-color: var(--color-tertiary);
    box-shadow: 10px 10px 0px var(--color-tertiary);
}

.teoria-card:nth-child(2) {
    transform: rotate(1.5deg);
    border-color: var(--color-primary);
    box-shadow: 10px 10px 0px var(--color-primary);
}

.teoria-card:nth-child(3) {
    transform: rotate(-0.5deg);
    border-color: var(--color-accent);
    box-shadow: 10px 10px 0px var(--color-accent);
}

.teoria-card:hover {
    transform: rotate(0deg) scale(1.02);
    z-index: 5;
}

.teoria-icon-small {
    margin-bottom: 15px;
    color: var(--color-text);
    opacity: 0.8;
}