/* ============================================================
   CSS VARIABLES — BRAND COLORS
   ============================================================ */
:root {
    /* Cores Principais */
    --primary: #293835;
    --secondary: #627263;
    --accent: #c3b8a5;
    --dark-teal: #203b44;
    /* Cores Secundárias */
    --bg-light: #f7f6f3;
    --bg-mid: #dfdedb;
    /* Tipografia */
    --font-main: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    /* Espaçamentos */
    --section-py: 100px;
    --navbar-h: 72px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ============================================================
   FADE-IN ON SCROLL ANIMATIONS
   ============================================================ */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    background: var(--bg-light);
    color: var(--primary);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
}

em {
    font-style: italic;
    color: #618664;
}

/* ============================================================
   NAVBAR
   ============================================================ */
body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 998;
}

#mainNav {
    z-index: 999;
    height: var(--navbar-h);
    background: var(--secondary);
}

#navLogo {
    width: auto;
    height: 40px;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-decoration: none;
}

.navbar-nav .nav-link {
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .75) !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Hamburger */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger-icon span {
    display: block;
    height: 1.5px;
    background: #fff;
    transition: all 0.3s ease;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-teal) 50%, #1a2e28 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* geometric decorative shapes */
.hero-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 80px solid rgba(195, 184, 165, .06);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 60px;
    right: 10%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(120, 144, 122, .18) 0%, transparent 70%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: var(--navbar-h);
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.4rem;
    padding-left: 2rem;
    position: relative;
}

.hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.4rem;
    height: 1px;
    background: var(--accent);
    transform: translateY(-50%);
}

.hero-title {
    font-family: var(--font-main);
    font-size: 55px;
    font-weight: 700;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 1.8rem;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .65);
    max-width: 520px;
    margin-bottom: 2.8rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-custom {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--accent);
    color: var(--primary);
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.btn-primary-custom:hover {
    background: #d9ccb8;
    transform: translateY(-2px);
}

.btn-outline-custom {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.btn-outline-custom:hover {
    border-color: var(--accent);
    background: rgba(195, 184, 165, .1);
    color: #fff;
    transform: translateY(-2px);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.hero-scroll-hint span {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .4), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .4;
    }

    50% {
        opacity: 1;
    }
}

/* ============================================================
   redes info
   ============================================================ */
.marquee-section {
    background: var(--primary);
    overflow: hidden;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-content {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-content .txt-marquee {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.redes-top {
    justify-content: center;

}

/* ============================================================
   SECTION SOBRE
   ============================================================ */
.section-sobre {
    padding: var(--section-py) 0;
    background: var(--bg-light);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-eyebrow.light {
    color: var(--accent);
}

.section-title {
    font-family: var(--font-main);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 500;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 1.6rem;
}

.section-title.light {
    color: #fff;
}

.section-text {
    font-size: 0.96rem;
    color: #5a6a66;
    margin-bottom: 1.1rem;
    line-height: 1.85;
}

.section-subtitle {
    font-size: 1rem;
    color: #5a6a66;
    max-width: 480px;
    margin: 0 auto;
}

/* Sobre image */
.sobre-image-wrap {
    position: relative;
    padding: 2rem 2rem 0 0;
}

.sobre-image-block {
    background: var(--bg-mid);
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.sobre-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 360px;
    background: linear-gradient(135deg, var(--primary), var(--dark-teal));
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre-img-placeholder i {
    font-size: 5rem;
    color: rgba(195, 184, 165, .25);
}

/* Linha decorativa */
.sobre-deco-line {
    position: absolute;
    top: 1rem;
    left: -1rem;
    width: 80px;
    height: 80px;
    border-left: 2px solid var(--accent);
    border-top: 2px solid var(--accent);
    opacity: 0.35;
    border-radius: 2px;
}

.sobre-stat-card {
    position: absolute;
    bottom: -1.5rem;
    right: 0;
    background: var(--accent);
    padding: 1.4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-main);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--primary);
    text-transform: uppercase;
    margin-top: 0.3rem;
}

/* Valores */
.valores-section {
    margin-top: 7rem;
    padding: 4rem 3rem;
    background: var(--bg-mid);
    border-radius: 2px;
}

.valores-header {
    text-align: center;
    margin-bottom: 3rem;
}

.valores-title {
    font-family: var(--font-main);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.valores-sub {
    font-size: 0.9rem;
    color: #6a7a76;
}

.valor-card {
    text-align: center;
    padding: 1.8rem 0.4rem;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.valor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(34, 52, 48, .1);
}

.valor-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.valor-icon i {
    font-size: 1.4rem;
    color: var(--secondary);
}

.valor-name {
    display: block;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.valor-desc {
    font-size: 0.82rem;
    color: #7a8a86;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   SECTION SOLUÇÕES
   ============================================================ */
.section-solucoes {
    padding: var(--section-py) 0;
    background: var(--primary);
}

.section-solucoes .section-eyebrow {

    color: var(--accent);
}

.section-solucoes .section-title {
    color: #fff;
}

.section-solucoes .section-subtitle {
    color: rgba(255, 255, 255, .55);
}

.solucao-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 2px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.solucao-card:hover {
    transform: translateY(-6px);
    border-color: rgba(195, 184, 165, .3);
    background: rgba(255, 255, 255, .07);
}

.solucao-img-wrap {
    overflow: hidden;
    height: 160px;
    position: relative;
}

.solucao-card:hover .solucao-img-bg {
    opacity: 1;
}

.solucao-img-bg i {
    font-size: 2.8rem;
    color: rgba(255, 255, 255, .55);
}

.solucao-body {
    padding: 1.6rem 1.8rem;
}

.solucao-title {
    font-family: var(--font-main);
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.solucao-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.75;
    margin-bottom: 1.4rem;
}

.solucao-link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.3s ease;
}

.solucao-link:hover {
    gap: 0.7rem;
}

.solucao-destaque {
    max-width: 760px;
    margin: 4rem auto 0;
    padding: 1.2rem 1.4rem;
    border-radius: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.98rem;
    line-height: 1.8;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.solucao-metodo {
    color: rgba(255, 255, 255, .75);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.85;
}

.solucao-method-text {
    display: block;
    font-size: 0.96rem;
    color: rgba(255, 255, 255, .72);
}

.solucao-itens {
    display: block;
    max-width: 820px;
    margin: 2rem auto 0;
    color: rgba(255, 255, 255, .72);
}

.solucao-itens-label {
    display: block;
    margin-bottom: 1rem;
    color: rgba(195, 184, 165, .92);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.solucao-acronym {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.solucao-acronym-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .04);
    color: rgba(255, 255, 255, .78);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.solucao-acronym-item strong {
    display: inline-flex;
    min-width: 1.9rem;
    height: 1.9rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.15rem;
}

.solucao-acronym-item.active {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .13);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
    transform: translateY(-1px);
}

.subtitulo {
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #ffffffa2;
}

.subtitulo::before,
.subtitulo::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #9a9a9a;
    margin: 12px 0;
    border-radius: 5px;
}

@media (max-width: 767px) {
    .solucao-acronym {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   SECTION CONTATO
   ============================================================ */
.section-contato {
    padding: var(--section-py) 0;
    background: var(--bg-light);
}

.contato-wrap {
    background: var(--primary);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(34, 52, 48, .2);
}

.contato-info-col {
    background: var(--dark-teal);
}

.contato-info {
    padding: 3.5rem 2.8rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contato-info .section-title {
    margin-bottom: 1rem;
}

.contato-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.8;
    margin-bottom: 2.2rem;
}

.contato-details {
    margin-bottom: 2.2rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.contato-item i {
    color: var(--accent);
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
}

.contato-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, .65);
}

.contato-item a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, .65);
}

.social-links-contato {
    display: flex;
    gap: 0.8rem;
}

.social-links-contato a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(195, 184, 165, .25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    font-size: 0.8rem;
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.social-links-contato a:hover {
    border-color: #627263;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 0 5px rgba(37, 211, 102, 0.35);
    color: #627263;
    background: rgba(195, 184, 165, .08);
}

.contato-form-col {
    background: var(--primary);
}

.contato-form-wrap {
    padding: 3.5rem 2.8rem;
}

.form-label-custom {
    display: block;
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 0.5rem;
}

.form-input-custom {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 2px;
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: border-color 0.3s, background 0.3s;
    resize: vertical;
}

.form-input-custom::placeholder {
    color: rgba(255, 255, 255, .28);
}

.form-input-custom:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, .08);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 2px;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #d9ccb8;
    transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #151f1c;
    padding: 2rem 0;
}

.footer-logo {
    width: auto;
    height: 55px;
}

.link-animado {
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.link-animado::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #e67e22;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.link-animado:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.link-animado:hover {
    color: #007fd3;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    :root {
        --section-py: 70px;
    }

    .navbar-brand img {
        max-height: 44px;
    }

    .hero-actions .btn-primary-custom{
        width: 100%;
        margin-bottom: 12px !important;
    }

    .hero-actions .btn-outline-custom{
        width: 100%;
        margin-bottom: 12px !important;
    }

    .valor-name {
        font-size: 0.95rem;
    }

    .sobre-stat-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1.5rem;
        display: inline-flex;
    }

    .sobre-image-wrap {
        margin-bottom: 4rem;
    }

    .contato-info {
        padding: 2.5rem 2rem;
    }

    .contato-form-wrap {
        padding: 2.5rem 2rem;
    }

    .sobre-deco-line {
        top: 1.5rem;
        left: -0.5rem;
    }

    .marquee-content .txt-marquee {
        font-size: 0.5rem;
        padding: 20px;
        margin: 0 auto;
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .link-animado {
        color: rgba(40, 127, 207, 0.35);
        text-decoration: underline;

    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;

        width: 82%;
        max-width: 290px;

        margin-left: auto;
        margin-right: 0;

        border-radius: 22px;
        background: rgba(32, 59, 68, 0.88);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

        animation: slideMenu .35s ease;
    }

    .mobile-menu {
        gap: .8rem !important;
    }

    .mobile-menu .nav-link {
        display: flex;
        align-items: center;
        gap: 14px;

        padding: 1rem 1.2rem !important;
        border-radius: 14px;

        font-size: 0.95rem;
        font-weight: 600;
        letter-spacing: .08em;

        color: rgba(255, 255, 255, .85) !important;
        background: rgba(255, 255, 255, 0.03);

        transition: all .3s ease;
    }

    .mobile-menu .nav-link i {
        font-size: 1rem;
        color: var(--accent);
        min-width: 18px;
    }

    .mobile-menu .nav-link:hover,
    .mobile-menu .nav-link.active {
        background: rgba(255, 255, 255, 0.08);
        transform: translateX(6px);
        color: #fff !important;
    }

    .mobile-menu .nav-link::after {
        display: none;
    }
}

/* animação */
@keyframes slideMenu {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet pequeno / celular grande (576px–768px) — S21+, Pixel, etc */
@media (min-width: 576px) and (max-width: 768px) {
    .hero-section {
        min-height: 100svh;
        padding-bottom: 80px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .hero-actions {
        gap: 0.7rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.7rem 1.6rem;
        font-size: 0.78rem;
    }

    .valor-name {
        font-size: 0.95rem;
    }
}

/* Celular médio (400px–575px) — iPhone SE, Moto G, Galaxy A */
@media (max-width: 575.98px) {
    :root {
        --section-py: 56px;
    }

    .hero-section {
        min-height: 100svh;
        padding-bottom: 80px;
    }

    .hero-scroll-hint {
        bottom: 1.2rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-desc {
        font-size: 0.88rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.6rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.65rem 1.4rem;
        font-size: 0.74rem;
        text-align: center;
        width: fit-content;
    }

    .valores-section {
        padding: 2.5rem 1.2rem;
    }

    .valor-card {
        padding: 1.4rem 0.6rem;
    }

    .valor-name {
        font-size: 0.80rem;
    }

    .whatsapp-float {
        bottom: 1.2rem;
        right: 1.2rem;
    }
}

/* Celular pequeno (360px–399px) — Galaxy A03, Redmi */
@media (max-width: 399px) {
    .hero-title {
        font-size: 1.55rem;
    }

    .hero-desc {
        font-size: 0.82rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.6rem 1.2rem;
        font-size: 0.70rem;
    }

    .valor-card {
        padding: 1.2rem 0.5rem;
    }

    .valor-name {
        font-size: 0.80rem;
    }

    .valor-desc {
        font-size: 0.78rem;
    }

    .valor-icon {
        width: 50px;
        height: 50px;
    }

    .valor-icon i {
        font-size: 1.1rem;
    }

    .whatsapp-float {
        bottom: 1.2rem;
        right: 1.2rem;
    }
}

/* Celular muito pequeno (< 360px) */
@media (max-width: 359px) {
    .hero-title {
        font-size: 1.35rem;
    }

    .hero-desc {
        font-size: 0.78rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.55rem 1rem;
        font-size: 0.66rem;
    }

    .valor-card {
        padding: 1rem 0.4rem;
    }

    .valor-name {
        font-size: 0.80rem;
    }

    .valor-desc {
        font-size: 0.74rem;
    }

    .valor-icon {
        width: 44px;
        height: 44px;
    }

    .whatsapp-float {
        bottom: 1.2rem;
        right: 1.2rem;
    }
}