:root {
    --orange: #F39200;
    --orange-dark: #D97D00;
    --orange-soft: #FFF1DD;
    --blue: #4FB3D9;
    --blue-soft: #E6F4FA;
    --ink: #2A2A2A;
    --muted: #5C5C5C;
    --line: #E8E1D7;
    --white: #FFFFFF;
    --radius: 14px;
    --shadow: 0 6px 24px rgba(40, 30, 20, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--ink);
    background: #FCFBF8;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Comfortaa', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--orange);
    margin: 0 0 .6em;
    line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
a { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 16px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--orange);
    text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.brand-text {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    letter-spacing: .5px;
    color: var(--orange);
}
.nav-toggle {
    display: none;
    background: var(--orange);
    border: 0;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    width: 22px;
    height: 2px;
    background: white;
    display: block;
}

.site-nav {
    background: var(--orange);
}
.site-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}
.site-nav a {
    display: block;
    padding: 14px 18px;
    color: white;
    font-weight: 600;
    font-size: .95rem;
    border-radius: 999px;
    transition: background .2s ease;
    text-decoration: none;
}
.site-nav a:hover,
.site-nav a.active {
    background: rgba(255,255,255,.22);
    text-decoration: none;
}

/* HERO BANNERS */
.hero {
    background: var(--orange);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.hero h1 { color: white; }
.hero p { max-width: 780px; margin: 0 auto; opacity: .95; font-size: 1.05rem; }

.hero-blue {
    background: linear-gradient(135deg, #6FBED7 0%, #4FB3D9 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.hero-blue h1 { color: white; }

/* SECTIONS */
section { padding: 60px 0; }
section.tight { padding: 40px 0; }
.section-alt { background: var(--orange-soft); }
.section-blue {
    background: linear-gradient(135deg, #6FBED7 0%, #4FB3D9 100%);
    color: white;
}
.section-blue h2,
.section-blue h3 { color: white; }
.section-blue a { color: white; text-decoration: underline; }
.section-blue .check-list li::before { background: white; color: var(--blue); }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.grid-2.media-right { direction: ltr; }
.grid-2 img { border-radius: var(--radius); box-shadow: var(--shadow); }

.lead { font-size: 1.1rem; color: var(--muted); }

/* BUTTONS */
.btn {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease;
}
.btn:hover { background: var(--orange-dark); text-decoration: none; transform: translateY(-1px); }
.btn-ghost {
    background: white;
    color: var(--orange);
    border: 2px solid white;
}
.btn-blue { background: var(--blue); }
.btn-blue:hover { background: #3B9BBF; }

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.card h3 { color: var(--orange); }

/* PULL QUOTE */
.pull-quote {
    background: var(--orange);
    color: white;
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius);
    font-family: 'Comfortaa', sans-serif;
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 40px 0;
}

/* HIGHLIGHT BAND (Tesseramento, 5x1000, etc.) */
.band {
    background: linear-gradient(135deg, #FFE9C2 0%, #FFD18A 100%);
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.band h2 { color: var(--orange-dark); }
.band .pill {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 700;
    margin: 16px 0;
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.gallery img {
    border-radius: var(--radius);
    aspect-ratio: 16/10;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform .25s ease;
}
.gallery img:hover { transform: scale(1.02); }
.gallery img { cursor: zoom-in; }

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 15, 10, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px;
    cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 100%;
    max-height: 100%;
    border-radius: var(--radius);
    box-shadow: 0 12px 60px rgba(0,0,0,.6);
    animation: lb-in .18s ease;
}
@keyframes lb-in {
    from { opacity: 0; transform: scale(.96); }
    to   { opacity: 1; transform: scale(1); }
}
.lightbox .lb-close,
.lightbox .lb-nav {
    position: absolute;
    background: rgba(255,255,255,.15);
    color: white;
    border: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .15s ease;
}
.lightbox button:hover { background: rgba(255,255,255,.3); }
.lightbox .lb-close { top: 20px; right: 20px; }
.lightbox .lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: .9rem;
    background: rgba(0,0,0,.4);
    padding: 6px 14px;
    border-radius: 999px;
}

/* PRESS ARTICLES */
.press-list { display: grid; gap: 24px; }
.press-item {
    background: white;
    border-left: 4px solid var(--orange);
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.press-item .kicker {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 14px;
    font-family: inherit;
    font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
}
.contact-form label {
    display: block;
    margin-bottom: 4px;
    font-size: .9rem;
    color: var(--muted);
    font-weight: 500;
}

.info-block { margin-bottom: 24px; }
.info-block h3 { color: var(--orange); margin-bottom: 6px; }

/* CHECK LIST */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 14px;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .8rem;
    font-weight: 700;
}

/* FAQ */
.faq details {
    background: white;
    border: 1px solid var(--blue-soft);
    border-left: 4px solid var(--blue);
    border-radius: var(--radius);
    padding: 16px 22px;
    margin-bottom: 12px;
}
.faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--ink);
    list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "▾"; float: right; transition: transform .2s; color: var(--blue); }
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details > p { margin-top: 12px; color: var(--muted); }

/* STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin: 32px 0;
}
.step {
    background: white;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}
.step .num {
    width: 44px;
    height: 44px;
    background: var(--ink);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    margin-bottom: 16px;
}

/* FOOTER */
.site-footer {
    background: #2A2A2A;
    color: #DDD;
    padding: 50px 0 24px;
    margin-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}
.site-footer h3 { color: var(--orange); margin-bottom: 14px; }
.site-footer a { color: white; }
.site-footer .social {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
}
.site-footer .social a {
    display: inline-block;
    padding: 8px 14px;
    background: var(--orange);
    color: white;
    border-radius: 999px;
    font-size: .85rem;
}
.site-footer .social a:hover { background: var(--orange-dark); text-decoration: none; }
.footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
}
.cf { font-size: .9rem; opacity: .85; }

/* RESPONSIVE */
@media (max-width: 880px) {
    .grid-2,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .nav-toggle { display: flex; }
    .site-nav { display: none; }
    .site-nav.open { display: block; }
    .site-nav ul { flex-direction: column; padding: 12px 0; }
    .site-nav a { text-align: center; }
    .brand-text { font-size: 1.1rem; }
}
