/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (STYLE PIPELY)
   ========================================================================== */
:root {
    --bg-color: #F7F6F4;
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A55;
    --accent-primary: #1A1A1A; /* Pipely style: dark buttons, near black */
    --accent-secondary: #C8A84B; /* Gold: subtle warm tone for tags/badges only */
    --border-color: #E6E4DF;
    --card-bg: #FFFFFF;
    --white: #FFFFFF;
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Layout Spacing */
    --section-padding: 8rem 2rem;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: var(--bg-color);
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* ==========================================================================
   BUTTONS & LINKS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0 !important; /* Pipely style: sharp corners */
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--white);
}

.btn-cta {
    background-color: var(--accent-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: 0.8125rem;
}

.btn-cta:hover {
    background-color: transparent;
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.w-full {
    width: 100%;
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.navbar-container,
.hero-container,
.section-container,
.footer-container,
.footer-bottom-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(247, 246, 244, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition-smooth);
    opacity: 0;
    animation: fadeSlideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}


.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
}

.brand-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.brand-logo .logo-main {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.brand-logo .logo-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--accent-secondary); /* Gold logo tagline */
}

.brand-logo.light .logo-main {
    color: var(--white);
}

.nav-menu {
    display: block;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
}

.nav-link:hover {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Menu Toggle (Mobile Hamburguer) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-color);
    box-shadow: -5px 0 25px rgba(0,0,0,0.05);
    z-index: 1100;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    color: var(--text-primary);
}

.drawer-nav {
    flex-grow: 1;
}

.drawer-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.drawer-link {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-primary);
    display: block;
}

.drawer-link:hover {
    color: var(--accent-secondary);
    padding-left: 0.5rem;
}

.drawer-cta-item {
    margin-top: 2rem;
}

/* ==========================================================================
   CURSOR CUSTOMIZADO
   ========================================================================== */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.cursor-dot {
    width: 10px;
    height: 10px;
    background-color: #C8A84B;
    opacity: 0;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(200, 168, 75, 0.6);
    background: transparent;
    opacity: 0;
    transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
}

.cursor-ring.expanded {
    width: 56px;
    height: 56px;
    opacity: 0.3 !important;
}

/* Show cursors only when inside hero */
.hero-section:hover ~ .cursor-dot,
body.cursor-active .cursor-dot {
    opacity: 1;
}

/* ==========================================================================
   ENTRANCE ANIMATIONS — KEYFRAMES
   ========================================================================== */
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes wordReveal {
    from { transform: translateY(110%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

@keyframes growWidth {
    from { width: 0; }
    to   { width: 64px; }
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}


/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    padding: 10rem 2rem 5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    cursor: none; /* Hide default cursor inside hero */
}

.hero-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
    align-items: stretch;
    margin-bottom: 0;
}

/* hero-left como coluna flex para empilhar badge → vídeo → divider → headline */
.hero-left {
    display: flex;
    flex-direction: column;
}

/* Badge / Pill — Marquee */
.social-proof-badge {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
    text-transform: uppercase;
    max-width: max-content;

    /* Entrance: fade up */
    opacity: 0;
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.badge-marquee-track {
    display: inline-flex;
    animation: marqueeScroll 12s linear infinite;
    will-change: transform;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding-right: 2rem;
}

.badge-icon {
    font-size: 0.875rem;
    color: var(--accent-secondary);
}

/* Divider dourado — cresce ao entrar */
.hero-divider {
    height: 2px;
    width: 0;
    background-color: var(--accent-secondary);
    margin-bottom: 2rem;
    animation: growWidth 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards;
}

/* Headline — word-by-word reveal */
.hero-headline {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.word-line {
    display: block;
    overflow: hidden; /* Clip the translateY reveal */
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(110%);
}

/* Stagger delays via JS — fallback CSS delays */
.word:nth-child(1)  { animation: wordReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards; }
.word:nth-child(2)  { animation: wordReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards; }

/* Each word-line's words get delay via JS */

.hero-headline .text-accent {
    font-style: italic;
    color: var(--text-primary);
}

/* Right side (typewriter + bullets + CTA) */
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 2rem;
    padding-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.hero-subtext {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.65;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Image / Photo Block — dentro da coluna esquerda */
.hero-image-wrapper {
    flex: none;
    width: 100%;
    aspect-ratio: 16 / 9;
    perspective: 600px;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 12px;
}

.image-placeholder {
    width: 100%;
    height: 480px;
    background-color: #EAE8E4;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--border-color);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(26, 26, 26, 0.05);
    pointer-events: none;
}

.placeholder-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.placeholder-icon {
    width: 48px;
    height: 48px;
    color: var(--text-secondary);
    opacity: 0.4;
}

.placeholder-text {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}



/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: var(--section-padding);
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    margin-bottom: 5rem;
    max-width: 600px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
}

.service-card {
    background-color: var(--white);
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover {
    background-color: #FAF9F6;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05); /* Soft shadow lift on cards */
}

.service-icon-wrapper {
    color: var(--accent-secondary); /* Gold icons for service cards */
    margin-bottom: 0.5rem;
}

.service-icon {
    width: 32px;
    height: 32px;
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
}

.service-card-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

/* ==========================================================================
   ABOUT / DIFFERENTIALS SECTION
   ========================================================================== */
.about-section {
    padding: var(--section-padding);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.stat-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-primary); /* Classy dark stats */
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
}

.about-text {
    font-size: 1.25rem;
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.7;
}

.about-cta-link {
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-primary);
    border-bottom: 1px solid var(--text-primary);
    padding-bottom: 0.25rem;
}

.about-cta-link:hover {
    color: var(--accent-secondary);
    border-bottom-color: var(--accent-secondary);
    padding-left: 0.5rem;
}

/* ==========================================================================
   NEWS / BLOG SECTION
   ========================================================================== */
.news-section {
    padding: var(--section-padding);
    border-bottom: 1px solid var(--border-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.news-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.news-card:hover {
    background-color: #FAF9F6;
    border-color: var(--text-primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05); /* Soft shadow lift on cards */
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.news-category {
    color: var(--accent-secondary); /* Gold category tag */
    font-weight: 600;
}

.news-date {
    color: var(--text-secondary);
}

.news-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.news-card-excerpt {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    flex-grow: 1;
}

.news-card-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    align-self: flex-start;
    border-bottom: 1px solid transparent;
    padding-bottom: 0.15rem;
}

.news-card:hover .news-card-link {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

.news-action-wrapper {
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--text-primary);
    color: #E2E0DB;
    padding: 6rem 2rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 440px;
    color: #B5B5B0;
}

.social-icons {
    display: flex;
    gap: 1.25rem;
}

.social-icon-link {
    color: #B5B5B0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.social-icon-link svg {
    width: 18px;
    height: 18px;
}

.social-icon-link:hover {
    color: var(--accent-secondary);
    border-color: var(--accent-secondary);
    background-color: rgba(255, 255, 255, 0.02);
}

.footer-right {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-title {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-secondary);
}

.contact-address {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #B5B5B0;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-secondary);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.contact-link:hover {
    color: var(--accent-secondary);
}

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

.footer-client-portal-link {
    font-size: 0.9375rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
    align-self: flex-start;
}

.footer-client-portal-link:hover {
    color: var(--accent-secondary);
    border-bottom-color: var(--accent-secondary);
    padding-left: 0.5rem;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2.5rem 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: #8C8C86;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVIDADE)
   ========================================================================== */

/* ==========================================================================
   1024px — Tablets paisagem / Desktops menores
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .hero-headline {
        font-size: 3rem;
    }

    .hero-image-wrapper {
        min-height: 260px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 3rem;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .news-card:last-child {
        grid-column: span 2;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* ==========================================================================
   768px — Tablets retrato
   ========================================================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 5rem 1.5rem;
    }

    /* Navbar */
    .navbar-container {
        padding: 1rem 1.25rem;
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Esconde "Área do cliente" na navbar em mobile — fica só no drawer */
    .btn-outline-nav {
        display: none;
    }

    /* Hero */
    .hero-section {
        padding: 7rem 1.5rem 3rem 1.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        align-items: start;
    }

    /* Coluna esquerda empilhada */
    .hero-left {
        width: 100%;
    }

    .hero-image-wrapper {
        aspect-ratio: 16 / 9;
        height: auto;
        min-height: unset;
        margin-bottom: 1.5rem;
        border-radius: 8px;
    }

    .hero-headline {
        font-size: 2.6rem;
    }

    /* Coluna direita: passa para baixo, alinha ao topo */
    .hero-right {
        justify-content: flex-start;
        gap: 1.5rem;
        padding-top: 2rem;
    }

    .hero-subtext-new {
        font-size: 1rem;
    }

    /* Serviços */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Sobre */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    /* Notícias */
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card:last-child {
        grid-column: auto;
    }

    /* Footer */
    .footer-right {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ==========================================================================
   480px — Smartphones
   ========================================================================== */
@media (max-width: 480px) {
    /* Navbar */
    .navbar-container {
        padding: 0.875rem 1rem;
    }

    .brand-logo .logo-main {
        font-size: 0.95rem;
    }

    .btn-cta {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }

    /* Hero */
    .hero-section {
        padding: 6rem 1rem 2.5rem 1rem;
    }

    .hero-image-wrapper {
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .hero-headline {
        font-size: 2rem;
        letter-spacing: -0.01em;
    }

    .hero-subtext-new {
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .social-proof-badge {
        font-size: 0.6875rem;
        padding: 0.4rem 0.8rem;
        max-width: 100%;
    }

    /* Serviços */
    .service-card {
        padding: 2.5rem 1.5rem;
    }

    /* Notícias */
    .news-card {
        padding: 2rem 1.5rem;
    }

    /* Footer */
    .footer-container {
        padding-bottom: 3rem;
    }
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bullet-icon {
    color: #C9A96E;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.bullet-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.4;
}

.btn-outline-nav {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 0.5rem 1.25rem;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline-nav:hover {
    background: #1a1a1a;
    color: #fff;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: inherit;
    z-index: 2;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    max-height: 480px;
}

.hero-typewriter-block {
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
}

.htw-line-top {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 800;
    color: #1A1A1A;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

.htw-line-mid {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    font-style: italic;
    color: #C9A96E;
    line-height: 1.05;
    margin: 0.15rem 0;
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.htw-line-bot {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 400;
    font-style: italic;
    color: #8a8a8a;
    letter-spacing: 0.01em;
    line-height: 1.2;
    margin: 0;
}

.typewriter-cursor {
    color: #C9A96E;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    animation: blink 0.8s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}
.footer .brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer .logo-img {
    height: 40px;
    width: auto;
}