/* === Sora Produções — estilo elegante === */
:root {
    --blue-1: #008dd2;
    --blue-2: #75c2e7;
    --blue-3: #7cc5e8;
    --blue-deep: #004f8c;
    --white: #fefefe;
    --dark: #0a1628;
    --dark-2: #0d1f3c;
    --text-muted: #777;
    --border: rgba(0,141,210,0.1);
    --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-1); text-decoration: none; transition: color .3s; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 5%; }

/* === HEADER fixo === */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 40px rgba(0,141,210,0.12);
}
.site-header .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 5%; max-width: none;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
    height: 36px; width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.4s;
}
.site-header.scrolled .brand-logo { filter: none; }
.nav-toggle { display: none; }
.nav-burger { display: none; cursor: pointer; padding: .5rem; }
.nav-burger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }
.site-header.scrolled .nav-burger span { background: var(--dark); }
.nav-links {
    display: flex; align-items: center; gap: 2.5rem;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,0.9); font-size: 0.92rem; font-weight: 400;
    letter-spacing: 0.05em; position: relative; transition: color 0.3s;
}
.site-header.scrolled .nav-links a { color: var(--dark); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -3px; left: 0;
    width: 0; height: 1.5px; background: var(--blue-1); transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }
.nav-links a.cta {
    background: var(--blue-1); color: #fff !important;
    padding: 0.55rem 1.4rem; border-radius: 50px; font-weight: 500;
    transition: transform .3s, box-shadow .3s;
}
.nav-links a.cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,141,210,0.4); }
.nav-links a.cta::after { display: none; }

@media (max-width: 900px) {
    .nav-burger { display: block; }
    .nav-links {
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
        flex-direction: column; gap: 0; padding: 1rem 5%;
        border-bottom: 1px solid var(--border);
        display: none;
    }
    .nav-toggle:checked ~ .nav-links { display: flex; }
    .nav-links a { color: var(--dark) !important; padding: .75rem 0; width: 100%; }
    .nav-links a.cta { margin-top: .75rem; text-align: center; }
}

/* === HERO === */
.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    position: relative; overflow: hidden; text-align: center;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-1) 45%, var(--blue-2) 100%);
    padding: 6rem 5% 4rem;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(0,60,120,0.5) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(124,197,232,0.25) 0%, transparent 50%);
    pointer-events: none;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
    position: absolute; border-radius: 50%;
    background: rgba(255,255,255,0.15); animation: float linear infinite;
}
@keyframes float {
    0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-logo { margin-bottom: 2.5rem; animation: fadeDown 1s ease both; }
.hero-logo img {
    height: clamp(80px, 12vw, 130px); width: auto;
    filter: brightness(0) invert(1);
    margin: 0 auto;
}
.hero-logo--big { margin-bottom: 1.5rem; }
.hero-logo--big img { height: clamp(120px, 22vw, 300px); }
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 300; color: #fff; letter-spacing: -0.01em;
    line-height: 0.95; animation: fadeUp 1s 0.2s ease both;
}
.hero-title span { font-weight: 700; display: block; }
.hero-sub {
    font-size: 1.05rem; color: rgba(255,255,255,0.8);
    margin-top: 1.8rem; letter-spacing: 0.12em;
    font-weight: 300; text-transform: uppercase;
    animation: fadeUp 1s 0.4s ease both;
}
.hero-cta {
    margin-top: 3rem; display: flex; gap: 1rem;
    justify-content: center; flex-wrap: wrap;
    animation: fadeUp 1s 0.6s ease both;
}
.btn-primary {
    background: #fff; color: var(--blue-1);
    padding: 0.95rem 2.4rem; border-radius: 50px;
    font-weight: 600; font-size: 0.9rem; letter-spacing: 0.08em;
    transition: all 0.3s; box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    border: 0; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.55); color: #fff;
    padding: 0.9rem 2.4rem; border-radius: 50px;
    font-weight: 400; font-size: 0.9rem; letter-spacing: 0.08em;
    background: rgba(255,255,255,0.08); transition: all 0.3s;
}
.btn-outline:hover { background: rgba(255,255,255,0.18); border-color: #fff; color: #fff; }

.scroll-hint {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%); display: flex; flex-direction: column;
    align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.55); font-size: 0.72rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    animation: fadeUp 1s 1s ease both;
}
.scroll-arrow {
    width: 18px; height: 18px;
    border-right: 1.5px solid rgba(255,255,255,0.45);
    border-bottom: 1.5px solid rgba(255,255,255,0.45);
    transform: rotate(45deg); animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,100% { transform: rotate(45deg) translateY(-3px); }
    50%     { transform: rotate(45deg) translateY(4px); }
}
@keyframes fadeDown { from { opacity:0; transform: translateY(-30px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeUp   { from { opacity:0; transform: translateY(30px);  } to { opacity:1; transform: translateY(0); } }

/* === PAGE HERO (subpáginas) === */
.page-hero {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-1) 50%, var(--blue-2) 100%);
    color: #fff;
    padding: 10rem 5% 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(0,60,120,0.4) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(124,197,232,0.25) 0%, transparent 50%);
    pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.page-hero .section-tag { background: rgba(255,255,255,0.18); color: #fff; }
.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.05;
    margin-bottom: 1rem;
}
.page-hero h1 strong { font-weight: 700; }
.page-hero .page-hero-sub {
    color: rgba(255,255,255,0.88);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}
.page-hero .crumbs {
    color: rgba(255,255,255,0.7); margin-bottom: 1.5rem;
}
.page-hero .crumbs a { color: rgba(255,255,255,0.9); }
.page-hero .crumbs a:hover { color: #fff; }

/* === SECTION DEFAULTS === */
.section { padding: 6rem 5%; }
.section.alt { background: linear-gradient(180deg, #f0f8ff, #fff); }
.section-head { max-width: var(--container); margin: 0 auto 3rem; text-align: center; }
.section-head.between { display: flex; justify-content: space-between; align-items: flex-end; text-align: left; gap: 2rem; flex-wrap: wrap; }
.section-tag {
    display: inline-block;
    background: rgba(0,141,210,0.1); color: var(--blue-1);
    padding: 0.35rem 1rem; border-radius: 50px;
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300; line-height: 1.15; margin-bottom: 1rem;
    color: var(--dark);
}
.section-title strong { font-weight: 700; color: var(--blue-1); }
.section-sub {
    color: var(--text-muted); font-size: 1rem;
    font-weight: 300; line-height: 1.75; max-width: 560px;
    margin: 0 auto;
}
.section-head.between .section-sub { margin: 0; }
.view-more {
    color: var(--blue-1); font-size: 0.88rem; font-weight: 500;
    letter-spacing: 0.05em; display: inline-flex; align-items: center;
    gap: 0.4rem; border-bottom: 1px solid var(--blue-2);
    padding-bottom: 0.15rem; transition: gap 0.2s;
}
.view-more:hover { gap: 0.75rem; }

/* === ABOUT === */
.about {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
    max-width: var(--container); margin: 0 auto;
}
.about p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.about-image {
    aspect-ratio: 1/1.1; border-radius: 24px; overflow: hidden;
    background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
    box-shadow: 0 32px 80px rgba(0,141,210,0.25);
    position: relative; display: flex; align-items: center; justify-content: center;
}
.about-image img { width: 60%; height: auto; filter: brightness(0) invert(1); opacity: 0.85; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; gap: 3rem; } }

/* === GRID PADRÃO (3 colunas) === */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: var(--container); margin: 0 auto; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: var(--container); margin: 0 auto; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }

/* === CARDS === */
.card {
    background: #fff; border-radius: 20px; overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    display: flex; flex-direction: column;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0,141,210,0.18);
    border-color: transparent;
}
.card .card-img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.card .card-body { padding: 1.75rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600; margin-bottom: .5rem;
    line-height: 1.25; color: var(--dark);
}
.card .meta {
    font-size: .78rem; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: .5rem;
}
.card p { color: var(--text-muted); font-size: .92rem; flex: 1; line-height: 1.6; }
.card .card-link {
    margin-top: 1rem; font-weight: 500; color: var(--blue-1);
    font-size: .88rem; letter-spacing: .05em;
}

/* === SERVICE CARDS === */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    cursor: default;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--blue-1), var(--blue-2));
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 20px;
    z-index: 0;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0,141,210,0.2);
    border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-card:hover .s-icon,
.service-card:hover h3,
.service-card:hover p { color: #fff !important; }
.service-card .s-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(0,141,210,0.1);
    color: var(--blue-1);
    margin-bottom: 1.5rem;
    transition: background 0.4s, color 0.4s;
}
.service-card .s-icon svg { width: 28px; height: 28px; }
.service-card:hover .s-icon {
    background: rgba(255,255,255,0.18);
    color: #fff !important;
}
.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark);
    transition: color 0.4s;
}
.service-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    transition: color 0.4s;
}

/* === GALERIA GRID === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px; gap: 1rem;
    max-width: var(--container); margin: 0 auto;
}
.gallery-grid > a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid > a:nth-child(5) { grid-column: span 2; }
@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery-grid > a:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery-grid > a:nth-child(5) { grid-column: span 1; }
}
.gallery-item {
    border-radius: 16px; overflow: hidden; position: relative;
    cursor: pointer; transition: transform 0.3s;
    background: linear-gradient(135deg, var(--blue-1), var(--blue-deep));
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,30,70,0.85) 0%, transparent 60%);
    display: flex; align-items: flex-end;
    padding: 1.5rem; color: #fff;
    opacity: 1; transition: opacity .3s;
}
.gallery-overlay strong { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; display: block; }
.gallery-overlay small { font-size: .8rem; opacity: .8; text-transform: uppercase; letter-spacing: .1em; }

/* === FOTOS DENTRO DA EDIÇÃO === */
.fotos-grid {
    display: grid; gap: .5rem;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--container); margin: 0 auto;
}
@media (max-width: 900px) { .fotos-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .fotos-grid { grid-template-columns: repeat(2, 1fr); } }
.fotos-grid a { aspect-ratio: 1; overflow: hidden; border-radius: 12px; background: var(--blue-deep); }
.fotos-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.fotos-grid a:hover img { transform: scale(1.05); }

/* === INSTAGRAM / REELS === */
.instagram-section {
    background: var(--dark); color: #fff;
    padding: 6rem 5%;
}
.instagram-section .section-title { color: #fff; }
.instagram-section .section-tag { background: rgba(255,255,255,0.08); color: var(--blue-2); }
.instagram-section .section-sub { color: rgba(255,255,255,0.6); }
.reels-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
    max-width: var(--container); margin: 0 auto;
}
@media (max-width: 900px) { .reels-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reels-grid { grid-template-columns: 1fr; } }
.reel-card {
    border-radius: 16px; overflow: hidden; aspect-ratio: 9/16;
    background: #000; position: relative;
}
.reel-card iframe { width: 100%; height: 100%; border: 0; }

/* === PARCEIROS === */
.parceiros {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
    gap: 1.5rem;
    justify-content: center;
    max-width: var(--container); margin: 0 auto;
}
.parceiro {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: .75rem;
    aspect-ratio: 5/3; padding: 2rem 1.5rem;
    border-radius: 20px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--blue-1) 0%, var(--blue-deep) 100%);
    color: #fff; text-align: center;
    box-shadow: 0 14px 40px rgba(0,141,210,0.18);
    transition: transform .4s cubic-bezier(0.23,1,0.32,1), box-shadow .4s;
}
.parceiro::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18) 0%, transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(124,197,232,0.25) 0%, transparent 50%);
    pointer-events: none;
}
.parceiro::after {
    content: ''; position: absolute; top: -30%; right: -30%;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.parceiro:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0,141,210,0.32);
}
.parceiro > * { position: relative; z-index: 2; }
.parceiro img {
    max-height: 80px; width: auto;
    filter: brightness(0) invert(1);
    opacity: .95;
}
.parceiro .parceiro-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
}
.parceiro .parceiro-icon svg { width: 28px; height: 28px; color: #fff; }
.parceiro .parceiro-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 600;
    color: #fff; letter-spacing: .01em;
    line-height: 1.15;
}
.parceiro .parceiro-tag {
    font-size: .72rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: .15em;
    color: rgba(255,255,255,0.7);
}

/* === EQUIPE / CRIADORES === */
.pessoa { text-align: center; }
.pessoa-foto-wrap {
    width: 100%; aspect-ratio: 3/4; border-radius: 20px;
    overflow: hidden; margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--blue-1), var(--blue-deep));
    position: relative; transition: transform .4s;
}
.pessoa:hover .pessoa-foto-wrap { transform: translateY(-6px); }
.pessoa-foto-wrap img { width: 100%; height: 100%; object-fit: cover; }
.pessoa-foto-wrap .foto-hover {
    position: absolute; inset: 0; opacity: 0; transition: opacity .45s ease;
}
.pessoa:hover .pessoa-foto-wrap .foto-hover { opacity: 1; }
.pessoa-foto-wrap .placeholder-letra {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem; color: rgba(255,255,255,0.18); font-weight: 700;
}
.pessoa h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 600; margin-bottom: .3rem;
    color: var(--dark);
}
.pessoa .funcao {
    color: var(--text-muted); font-size: .8rem;
    text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: .75rem;
}
.pessoa-bio { color: var(--text-muted); font-size: .9rem; margin-bottom: .75rem; }
.pessoa .links {
    display: flex; gap: .65rem; justify-content: center; align-items: center;
}
.pessoa .links a {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(0,141,210,0.1); color: var(--blue-1);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all .25s;
}
.pessoa .links a:hover { background: var(--blue-1); color: #fff; }
.pessoa .links svg { width: 16px; height: 16px; }

/* === CONTATO === */
.contact-bg {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-1) 50%, #60b8e0 100%);
    position: relative; overflow: hidden; padding: 6rem 5%;
    color: #fff;
}
.contact-bg::before, .contact-bg::after {
    content: ''; position: absolute; border-radius: 50%;
}
.contact-bg::before { width: 700px; height: 700px; background: rgba(255,255,255,0.04); top: -250px; right: -250px; }
.contact-bg::after  { width: 400px; height: 400px; background: rgba(255,255,255,0.03); bottom: -150px; left: -100px; }
.contact-inner {
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center; position: relative; z-index: 1;
}
@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; gap: 3rem; } }
.contact-info .section-title, .contact-info .section-tag { color: #fff; }
.contact-info .section-tag { background: rgba(255,255,255,0.15); }
.contact-info .section-title strong { color: #fff; }
.contact-info p { color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 1.5rem; }
.contact-detail {
    display: flex; align-items: center; gap: .75rem;
    color: rgba(255,255,255,0.85); margin-top: 1rem; font-size: .92rem;
}
.contact-detail svg { width: 18px; height: 18px; flex-shrink: 0; }
.contact-detail a { color: #fff; }
.contact-form {
    background: rgba(255,255,255,0.1); backdrop-filter: blur(20px);
    border-radius: 24px; padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.18);
}
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form input, .contact-form textarea {
    width: 100%; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18); border-radius: 12px;
    padding: 0.9rem 1.2rem; color: #fff;
    font-family: 'Outfit', sans-serif; font-size: 0.92rem;
    outline: none; transition: border-color 0.3s; resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(255,255,255,0.6); }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .form-submit {
    width: 100%; background: #fff; color: var(--blue-1);
    border: 0; border-radius: 50px; padding: 1rem;
    font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 600;
    cursor: pointer; transition: all .3s; letter-spacing: .05em; margin-top: .5rem;
}
.contact-form .form-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.cta-band { text-align: center; }
.cta-inner {
    max-width: 760px; margin: 0 auto; position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.cta-band .section-title { color: #fff; }
.cta-band .section-title strong { color: #fff; }
.cta-band p {
    color: rgba(255,255,255,0.9); line-height: 1.7;
    font-size: 1.08rem; max-width: 640px;
}
.cta-btn { margin-top: .5rem; }

.honeypot { position: absolute; left: -9999px; }
.alert {
    background: rgba(255,255,255,0.2); color: #fff;
    padding: .85rem 1.25rem; border-radius: 12px;
    margin-bottom: 1rem; border-left: 3px solid #fff;
}
.alert.error { background: rgba(255,80,80,0.2); border-left-color: #ff8080; }

/* === FOOTER === */
.site-footer {
    background: var(--dark); color: rgba(255,255,255,0.5);
    padding: 4rem 5% 2rem;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem; max-width: var(--container); margin: 0 auto;
    align-items: start;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-grid div { display: flex; flex-direction: column; gap: .5rem; }
.footer-grid strong { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .5rem; }
.footer-grid a { color: rgba(255,255,255,0.5); transition: color .3s; }
.footer-grid a:hover { color: #fff; }
.footer-logo { height: 32px; width: auto; max-width: 140px; align-self: flex-start; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: .75rem; }
.footer-brand p { font-size: .92rem; line-height: 1.6; }
.footer-copy { font-size: .8rem; opacity: .6; align-self: end; }

/* === ARTIGO === */
.artigo { max-width: 760px; margin: 0 auto; }
.artigo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 600;
    margin-bottom: .75rem; line-height: 1.15;
}
.artigo .artigo-meta { color: var(--text-muted); margin-bottom: 2rem; font-size: .9rem; }
.artigo .artigo-capa {
    width: 100%; border-radius: 20px;
    margin-bottom: 2.5rem; aspect-ratio: 16/9; object-fit: cover;
}
.artigo .conteudo { font-size: 1.08rem; line-height: 1.85; color: #333; }
.artigo .conteudo p { margin-bottom: 1.2rem; }
.artigo .conteudo h2, .artigo .conteudo h3 { margin: 2rem 0 .75rem; font-family: 'Cormorant Garamond', serif; }
.artigo .conteudo h2 { font-size: 1.8rem; font-weight: 600; }
.artigo .conteudo img { border-radius: 12px; margin: 1rem 0; }

/* === BREADCRUMBS === */
.crumbs {
    max-width: var(--container); margin: 0 auto 2rem;
    font-size: .85rem; color: var(--text-muted);
}
.crumbs a { color: var(--text-muted); transition: color .3s; }
.crumbs a:hover { color: var(--blue-1); }

/* === EMPTY STATE === */
.empty {
    text-align: center; padding: 4rem 1rem;
    color: var(--text-muted); max-width: 560px; margin: 0 auto;
}
.empty h3 { color: var(--dark); margin-bottom: .5rem; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; }

/* === LIGHTBOX === */
.lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.92); z-index: 100;
    align-items: center; justify-content: center; padding: 2rem;
}
.lightbox:target { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; }
.lightbox a.close { position: absolute; top: 1.25rem; right: 1.5rem; color: #fff; font-size: 2rem; }
.lightbox .nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 3rem; padding: 1rem; opacity: .7; }
.lightbox .nav-arrow:hover { opacity: 1; }
.lightbox .prev { left: 1rem; }
.lightbox .next { right: 1rem; }
.lightbox .legenda { position: absolute; bottom: 1rem; left: 0; right: 0; color: #fff; text-align: center; opacity: .85; padding: 0 2rem; }

/* === MOTION === */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01s !important; transition: none !important; }
}
