/* =========================================================
   Helen Vita — Tema WordPress · CSS principal
   Paleta: navy #081C34 + mustard #E89D25 · Tipografia: Cormorant + Outfit
   ========================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #000;
    color: #F8F9FA;
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

::selection { background: #E89D25; color: #000; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #040F1F; }
::-webkit-scrollbar-thumb { background: #1a3354; }
::-webkit-scrollbar-thumb:hover { background: #E89D25; }

/* Container */
.hv-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .hv-container { padding: 0 48px; } }

/* Typography */
.hv-h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}
.hv-h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0;
}
.hv-h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 1.75rem;
    color: #fff;
    margin: 0 0 12px;
}
@media (min-width: 768px) { .hv-h3 { font-size: 2rem; } }

.hv-italic-accent {
    font-style: italic;
    color: #E89D25;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.hv-overline {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.75rem;
    color: #E89D25;
}
@media (min-width: 768px) { .hv-overline { font-size: 0.875rem; } }

.hv-overline-row { display: flex; align-items: center; gap: 12px; }
.hv-overline-row.hv-center { justify-content: center; }
.hv-accent-bar { display: inline-block; width: 48px; height: 3px; background: #E89D25; }

.hv-mt-sm { margin-top: 16px; }
.hv-mt-md { margin-top: 28px; }
.hv-mt-xl { margin-top: 64px; }
.hv-center { text-align: center; justify-content: center; }
.hv-accent { color: #E89D25 !important; }

/* Buttons */
.hv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: all .3s ease;
    cursor: pointer;
}
.hv-btn-primary { background: #E89D25; color: #000; }
.hv-btn-primary:hover { background: #F5AD38; }
.hv-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.2);
}
.hv-btn-outline:hover { border-color: #E89D25; color: #E89D25; }
.hv-btn-block { width: 100%; padding: 18px; }
.hv-btn i { width: 18px; height: 18px; }
.hv-btn.is-loading { opacity: .6; pointer-events: none; }

/* ============ Header ============ */
.hv-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    transition: all .5s ease;
}
.hv-header.scrolled {
    background: rgba(4, 15, 31, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.hv-header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 24px;
}
@media (min-width: 768px) { .hv-header-inner { padding: 20px 48px; } }

.hv-logo { display: flex; align-items: baseline; gap: 10px; }
.hv-logo-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600; font-size: 1.75rem; color: #fff;
    letter-spacing: -0.01em;
}
@media (min-width: 768px) { .hv-logo-name { font-size: 2rem; } }
.hv-logo-dot { color: #E89D25; }
.hv-logo-tag {
    display: none;
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em;
    color: rgba(255,255,255,.5);
}
@media (min-width: 768px) { .hv-logo-tag { display: inline; } }

.hv-nav { display: none; gap: 36px; }
@media (min-width: 900px) { .hv-nav { display: flex; } }
.hv-nav a {
    font-size: 14px; letter-spacing: 0.02em;
    color: rgba(255,255,255,.7);
    transition: color .2s;
}
.hv-nav a:hover { color: #E89D25; }

.hv-header-cta { display: none; padding: 12px 24px; }
@media (min-width: 900px) { .hv-header-cta { display: inline-flex; } }

.hv-menu-toggle {
    display: inline-flex; background: none; border: 0; color: #fff; padding: 8px;
}
@media (min-width: 900px) { .hv-menu-toggle { display: none; } }

.hv-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 14px;
    background: rgba(4, 15, 31, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,.1);
}
.hv-mobile-menu.open { display: flex; }
.hv-mobile-menu a { color: rgba(255,255,255,.85); padding: 8px 0; }

/* ============ Hero ============ */
.hv-hero {
    position: relative;
    background: #000;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}
.hv-hero-grid-bg {
    position: absolute; inset: 0;
    opacity: 0.07; pointer-events: none;
    background-image:
        linear-gradient(rgba(232,157,37,.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,157,37,.4) 1px, transparent 1px);
    background-size: 80px 80px;
}
.hv-side-label {
    display: none;
    position: absolute; right: 24px; top: 50%;
    transform: rotate(90deg) translateX(50%);
    transform-origin: right top;
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.4em;
    color: rgba(255,255,255,.3);
}
@media (min-width: 1024px) { .hv-side-label { display: block; } }

.hv-hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr; gap: 40px;
    align-items: center; width: 100%;
}
@media (min-width: 1024px) {
    .hv-hero-inner { grid-template-columns: 7fr 5fr; gap: 40px; }
}

.hv-hero-text {
    max-width: 560px;
    margin-top: 32px;
    color: rgba(255,255,255,.65);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}
@media (min-width: 768px) { .hv-hero-text { font-size: 1.125rem; } }

.hv-hero-cta {
    margin-top: 40px;
    display: flex; flex-direction: column; gap: 16px;
}
@media (min-width: 640px) { .hv-hero-cta { flex-direction: row; } }

.hv-hero-stats {
    margin-top: 56px;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 420px;
}
.hv-stat-n {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.75rem; color: #fff;
}
@media (min-width: 768px) { .hv-stat-n { font-size: 2rem; } }
.hv-stat-l {
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em;
    color: rgba(255,255,255,.4); margin-top: 4px;
}

.hv-hero-right { position: relative; }
.hv-hero-glow {
    position: absolute; inset: -40px;
    background: rgba(232,157,37,.10);
    filter: blur(60px); border-radius: 50%;
    opacity: 0.35;
}
.hv-hero-photo {
    position: relative; z-index: 1;
    width: 100%; max-height: 85vh;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(232,157,37,.15));
}

.hv-scroll-hint {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.4em;
    color: rgba(255,255,255,.3);
    animation: hv-pulse 2s ease-in-out infinite;
}
@keyframes hv-pulse { 50% { opacity: .4; } }

/* ============ Generic Section ============ */
.hv-section { position: relative; padding: 96px 0; }
@media (min-width: 768px) { .hv-section { padding: 128px 0; } }

/* ============ About ============ */
.hv-about {
    background: #081C34;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.hv-about-grid {
    display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 1024px) {
    .hv-about-grid { grid-template-columns: 5fr 7fr; gap: 80px; }
}
.hv-quote-block {
    border-left: 4px solid #E89D25;
    padding-left: 24px;
    margin-top: 24px;
}
.hv-quote {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    line-height: 1.15;
    color: #fff; margin: 0;
}
.hv-quote-sm {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.25rem; line-height: 1.4;
    color: rgba(255,255,255,.9); margin: 0;
}
.hv-quote-author {
    margin-top: 24px;
    color: #E89D25;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
.hv-about-right p {
    color: rgba(255,255,255,.75);
    font-size: 1rem; line-height: 1.7;
    margin-bottom: 24px; font-weight: 300;
}
@media (min-width: 768px) { .hv-about-right p { font-size: 1.125rem; } }
.hv-about-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 16px;
}
.hv-about-stats .hv-stat-n { font-size: 2.5rem; }

/* ============ Values ============ */
.hv-values { background: #000; }
.hv-blocks-grid {
    display: grid; grid-template-columns: 1fr;
    margin-top: 64px;
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 768px) { .hv-blocks-grid { grid-template-columns: repeat(3, 1fr); } }
.hv-block {
    position: relative;
    padding: 32px;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: background .3s;
}
@media (min-width: 768px) { .hv-block { padding: 40px; } }
.hv-block:hover { background: rgba(255,255,255,.03); }
.hv-block-n {
    position: absolute; top: 16px; right: 16px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4rem; color: rgba(255,255,255,.08);
}
.hv-block-icon {
    width: 32px; height: 32px;
    color: #E89D25; margin-bottom: 24px; display: block;
}
.hv-block p {
    color: rgba(255,255,255,.65);
    font-size: 0.95rem; line-height: 1.7;
    font-weight: 300; margin: 0;
}

.hv-values-grid {
    display: grid; grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 1024px) {
    .hv-values-grid { grid-template-columns: 4fr 8fr; }
}
.hv-values-intro p {
    color: rgba(255,255,255,.6);
    font-weight: 300; margin-top: 24px;
}
.hv-values-list {
    display: grid; grid-template-columns: 1fr;
    gap: 0 32px;
}
@media (min-width: 640px) { .hv-values-list { grid-template-columns: 1fr 1fr; } }
.hv-value-item {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
    transition: color .2s;
}
.hv-value-item:hover { color: #fff; }
.hv-value-n {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: #E89D25; width: 32px; font-size: 0.875rem;
}

/* ============ Manifesto ============ */
.hv-manifesto {
    position: relative; padding: 128px 0; overflow: hidden;
}
@media (min-width: 768px) { .hv-manifesto { padding: 176px 0; } }
.hv-manifesto-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1700674843611-a54f29244a2b?crop=entropy&cs=srgb&fm=jpg&ixid=M3w4NjAzMjh8MHwxfHNlYXJjaHwyfHxyaW8lMjBkZSUyMGphbmVpcm8lMjBjaXR5c2NhcGV8ZW58MHx8fHwxNzgwMjM5NTE3fDA&ixlib=rb-4.1.0&q=85');
    background-size: cover; background-position: center;
}
.hv-manifesto-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.85);
}
.hv-manifesto-inner {
    position: relative; z-index: 1; text-align: center; max-width: 880px;
}
.hv-manifesto-text {
    margin-top: 48px;
    display: flex; flex-direction: column; gap: 20px;
    max-width: 640px; margin-left: auto; margin-right: auto;
    color: rgba(255,255,255,.75);
    font-size: 1.125rem; line-height: 1.7;
    font-weight: 300;
}
@media (min-width: 768px) { .hv-manifesto-text { font-size: 1.25rem; } }
.hv-manifesto-quote {
    margin-top: 56px; display: inline-block;
    border-top: 1px solid rgba(232,157,37,.4);
    padding-top: 24px;
}
.hv-manifesto-quote p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.5rem; line-height: 1.3;
    color: #fff; margin: 0;
}
@media (min-width: 768px) { .hv-manifesto-quote p { font-size: 1.875rem; } }

/* ============ Bandeiras ============ */
.hv-bandeiras { background: #040F1F; }
.hv-bandeiras-head {
    display: grid; grid-template-columns: 1fr; gap: 32px;
    margin-bottom: 56px; align-items: end;
}
@media (min-width: 1024px) {
    .hv-bandeiras-head { grid-template-columns: 7fr 5fr; gap: 40px; }
}
.hv-bandeiras-sub {
    color: rgba(255,255,255,.65); font-weight: 300;
    font-size: 1rem;
}
@media (min-width: 768px) { .hv-bandeiras-sub { font-size: 1.125rem; } }
.hv-bandeiras-grid {
    display: grid; grid-template-columns: 1fr;
    border-top: 1px solid rgba(255,255,255,.1);
    border-left: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 640px) { .hv-bandeiras-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .hv-bandeiras-grid { grid-template-columns: repeat(3, 1fr); } }
.hv-bandeira {
    position: relative;
    padding: 32px;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: background .3s;
}
@media (min-width: 768px) { .hv-bandeira { padding: 40px; } }
.hv-bandeira:hover { background: rgba(255,255,255,.04); }
.hv-bandeira:hover .hv-bandeira-icon { color: #E89D25; }
.hv-bandeira:hover .hv-bandeira-underline { transform: scaleX(1); }
.hv-bandeira-n {
    position: absolute; top: 20px; right: 24px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.75rem; letter-spacing: 0.15em;
    color: rgba(255,255,255,.3);
}
.hv-bandeira-icon {
    width: 36px; height: 36px;
    color: rgba(255,255,255,.7); margin-bottom: 24px;
    transition: color .3s; display: block;
}
.hv-bandeira p {
    color: rgba(255,255,255,.6);
    font-size: 0.95rem; line-height: 1.7;
    font-weight: 300; margin: 0;
}
.hv-bandeira-underline {
    display: block; margin-top: 24px;
    width: 32px; height: 2px; background: #E89D25;
    transform: scaleX(0); transform-origin: left;
    transition: transform .5s ease;
}

/* ============ Form ============ */
.hv-form-section { background: #000; border-top: 1px solid rgba(255,255,255,.1); }
.hv-form-grid {
    display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 1024px) {
    .hv-form-grid { grid-template-columns: 5fr 7fr; gap: 80px; }
}
.hv-form-lead {
    margin-top: 24px;
    color: rgba(255,255,255,.65);
    font-weight: 300; max-width: 460px;
    font-size: 1rem; line-height: 1.7;
}
@media (min-width: 768px) { .hv-form-lead { font-size: 1.125rem; } }
.hv-contact-list {
    margin-top: 40px;
    display: flex; flex-direction: column; gap: 20px;
}
.hv-contact-item {
    display: flex; align-items: center; gap: 16px;
    color: rgba(255,255,255,.85);
    transition: color .2s;
}
.hv-contact-item i { color: #E89D25; width: 22px; height: 22px; }
a.hv-contact-item:hover { color: #E89D25; }

.hv-form {
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(8,28,52,.4);
    backdrop-filter: blur(6px);
    padding: 32px;
    position: relative;
}
@media (min-width: 768px) { .hv-form { padding: 48px; } }
.hv-form-row {
    display: grid; grid-template-columns: 1fr; gap: 24px;
    margin-bottom: 24px;
}
@media (min-width: 640px) { .hv-form-row { grid-template-columns: 1fr 1fr; } }
.hv-field { display: block; }
.hv-field label {
    display: block;
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em;
    color: rgba(255,255,255,.55); margin-bottom: 8px;
}
.hv-field input,
.hv-field select,
.hv-field textarea {
    width: 100%;
    background: rgba(0,0,0,.5);
    border: 1px solid rgba(255,255,255,.18);
    color: #F8F9FA;
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    border-radius: 0;
    transition: border-color .2s;
    appearance: none;
}
.hv-field input::placeholder,
.hv-field textarea::placeholder { color: rgba(255,255,255,.35); }
.hv-field input:focus,
.hv-field select:focus,
.hv-field textarea:focus {
    outline: none;
    border-color: #E89D25;
    box-shadow: 0 0 0 1px #E89D25;
}
.hv-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23E89D25' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.hv-field select option { background: #040F1F; color: #fff; }
.hv-field textarea { resize: vertical; }

.hv-form-disclaimer {
    margin-top: 16px;
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,.4);
    letter-spacing: 0.02em;
}

/* Honeypot */
.hv-hp { position: absolute; left: -10000px; top: -10000px; width: 1px; height: 1px; opacity: 0; }

.hv-form-success {
    text-align: center;
    padding: 56px 32px;
}
.hv-form-success i {
    color: #E89D25;
    width: 56px; height: 56px;
    margin: 0 auto 24px;
    display: block;
}
.hv-form-success h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem; color: #fff;
    margin: 0 0 16px;
}
.hv-form-success p {
    color: rgba(255,255,255,.7);
    max-width: 480px; margin: 0 auto;
}

.hv-form-error {
    margin-top: 16px;
    padding: 14px 18px;
    border: 1px solid rgba(220,38,38,.5);
    background: rgba(220,38,38,.08);
    color: #fca5a5;
    font-size: 0.875rem;
    text-align: center;
}

/* ============ Footer ============ */
.hv-footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 80px 0;
}
@media (min-width: 768px) { .hv-footer { padding: 112px 0; } }
.hv-footer-grid {
    display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 1024px) {
    .hv-footer-grid { grid-template-columns: 6fr 3fr 3fr; }
}
.hv-footer-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05; color: #fff;
    margin: 0 0 16px;
}
.hv-footer-brand p {
    color: rgba(255,255,255,.55);
    max-width: 420px; font-weight: 300;
}
.hv-footer-col h4 { margin: 0; }
.hv-footer-col ul {
    list-style: none; padding: 0; margin: 24px 0 0;
    display: flex; flex-direction: column; gap: 12px;
}
.hv-footer-col a {
    color: rgba(255,255,255,.7);
    transition: color .2s;
}
.hv-footer-col a:hover { color: #E89D25; }
.hv-footer-col li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: rgba(255,255,255,.7);
}
.hv-footer-col li i { color: #E89D25; width: 16px; height: 16px; margin-top: 4px; }
.hv-footer-bottom {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex; flex-direction: column; gap: 16px;
    justify-content: space-between;
}
@media (min-width: 768px) {
    .hv-footer-bottom { flex-direction: row; align-items: center; }
}
.hv-footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.4);
    font-size: 12px;
}

/* Reveal animation */
.hv-reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity .9s ease, transform .9s ease;
}
.hv-reveal.is-in { opacity: 1; transform: none; }
