/* Paralucent Font Family */
@font-face {
    font-family: 'Paralucent';
    src: url('../fonts/ParalucentThin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paralucent';
    src: url('../fonts/ParalucentExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paralucent';
    src: url('../fonts/ParalucentMedium.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paralucent';
    src: url('../fonts/ParalucentMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paralucent';
    src: url('../fonts/ParalucentDemiBold 2.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paralucent';
    src: url('../fonts/ParalucentBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paralucent';
    src: url('../fonts/ParalucentHeavy.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Paralucent';
    src: url('../fonts/ParalucentHeavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Paralucent Text (corpo de texto) */
@font-face {
    font-family: 'ParalucentText';
    src: url('../fonts/ParalucentTextBook.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ParalucentText';
    src: url('../fonts/ParalucentTextBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow: #fae731;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --light-gray2: #fbfbfc;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'ParalucentText', 'Paralucent', sans-serif;
    overflow-x: hidden;
    color: var(--black);
}

/* Header/Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
    justify-content: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--yellow);
    color: var(--black);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 237, 0, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--yellow);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65));
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    padding: 40px;
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 64px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--yellow);
    display: block;
}

.hero-subtitle {
    font-size: clamp(15px, 1.6vw, 24px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    background: var(--yellow);
    color: var(--black);
    padding: 16px 30px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 237, 0, 0.5);
}

.secondary-btn {
    background: transparent;
    color: var(--white);
    padding: 16px 30px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--yellow);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.secondary-btn:hover {
    background: var(--yellow);
    color: var(--black);
}

/* Clients Section */
.clients {
    background: #e0e0e0;
    padding: 60px 60px;
    text-align: center;
}

.clients h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 48px;
    color: var(--black);
}

.clients-grid {
    overflow: hidden;
}

.clients-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 60px;
    animation: ticker-scroll 22s linear infinite;
}


.client-logo {
    flex: 0 0 auto;
    max-height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.6;
    transition: var(--transition);
    filter: grayscale(100%);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Stats Section */
.stats {
    background: var(--yellow);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 40px; */
    position: relative;
    z-index: 1;
    align-items: start;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 20px; */
    background-image: url('../img/stats/bg-images.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}

.stat-shield {
    width: 100%;
    max-width: 260px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.stat-shield img {
    width: 100%;
    height: auto;
    display: block;
}

.stat-number {
    font-family: 'Paralucent', sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 600;
    color: var(--black);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 400;
    color: var(--dark-gray);
    margin-top: -10px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator::before {
    content: '';
    display: block;
    width: 30px;
    height: 50px;
    border: 3px solid var(--yellow);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* ============================================================
   RESPONSIVE — Breakpoints padrão de mercado
   1280px  Desktop médio
    1024px  Laptop / tablet landscape
     768px  Tablet portrait
     480px  Mobile grande
     375px  Mobile pequeno
   max-height: 700px  Viewport curto (ex: 1280×640, landscape mobile)
   ============================================================ */

/* --- 1280px: Desktop médio --------------------------------- */
@media (max-width: 1280px) {
    .nav-container {
        padding: 20px 30px;
    }

    .hero-content {
        padding: 40px 0;
    }
}

/* --- 1024px: Laptop / tablet landscape --------------------- */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 24px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 29px;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    /* .primary-btn,
    .secondary-btn {
        padding: 14px 36px;
        font-size: 15px;
    } */
}

/* --- 940px: Tablet portrait — nav passa para mobile -------- */
@media (max-width: 940px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 40px;
        gap: 30px;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-container {
        padding: 16px 20px;
        grid-template-columns: 1fr auto;
    }

    .nav-right .cta-button {
        display: none;
    }

    .hero {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 29px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 32px;
    } */

    .clients-track {
        gap: 40px;
    }

    .client-logo {
        max-height: 28px;
        max-width: 110px;
        padding: 0 8px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        /* gap: 48px; */
    }

    .stat-shield {
        width: 200px;
        height: 240px;
    }
}

/* --- 480px: Mobile grande ---------------------------------- */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 24px;
    }

    /* .primary-btn,
    .secondary-btn {
        font-size: 14px;
        padding: 13px 28px;
    } */

    .clients h2 {
        font-size: 26px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 16px;
    }
}

/* --- 375px: Mobile pequeno --------------------------------- */
@media (max-width: 375px) {
    .logo {
        font-size: 22px;
    }
}

/* --- Viewport curto (1280×640, landscape mobile) ----------- */
@media (max-height: 700px) {
    .hero {
        padding-top: 70px;
        align-items: center;
    }

    .hero-content {
        padding: 20px 30px;
    }

    .hero h1 {
        font-size: 46px;
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 40px;
        line-height: 1.5;
    }

    .hero-buttons {
        gap: 12px;
    }
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 237, 0, 0.2);
    border-top-color: var(--yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Ticker Section */
.ticker-wrapper {
    background: var(--black);
    padding: 22px 0;
    overflow: hidden;
    border-top: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
}

/* Segundo ticker (após problem-section): fundo amarelo */
.problem-section ~ .ticker-wrapper {
    background: var(--yellow);
    border-top-color: var(--black);
    border-bottom-color: var(--black);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
    white-space: nowrap;
}

.ticker-logo {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

.problem-section ~ .ticker-wrapper .ticker-logo {
    filter: brightness(0);
}

.ticker-text {
    font-size: 15px;
    font-weight: 400;
    color: var(--yellow);
    letter-spacing: 0.3px;
}

.problem-section ~ .ticker-wrapper .ticker-text {
    color: var(--black);
}

/* .ticker-item::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--yellow);
    border-radius: 50%;
    margin-left: 30px;
    opacity: 0.5;
} */

/* Problem Section */
.problem-section {
    background: var(--yellow);
    padding-bottom: 30px;
}

.problem-header {
    text-align: center;
    padding: 60px 40px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.problem-header h2 {
    font-size: 36px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.problem-header p {
    font-size: 24px;
    color: var(--black);
    line-height: 1.4;
}

@media (max-width: 480px) {
    .problem-header p  {
        font-size: 18px;
    }
}

.problem-visual {
    position: relative;
    width: 100%;
    line-height: 0;
}

.problem-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.problem-overlay-left,
.problem-overlay-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.problem-overlay-left {
    left: 35%;
    transform: translate(-115%, -50%);
    color: var(--white);
    font-size: clamp(20px, 2.8vw, 38px);
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.15;
    letter-spacing: 1px;
}

.problem-overlay-right {
    left: 65%;
    transform: translate(15%, -50%);
}

.problem-overlay-right img {
    height: clamp(50px, 7vw, 110px);
    width: auto;
    display: block;
}

/* Risks Section */
.risks-section {
    background: #f5f5f5;
    padding: 90px 0 110px;
    overflow: hidden;
    position: relative;
}

.risks-header {
    text-align: center;
    padding: 0 40px 60px;
    max-width: 700px;
    margin: 0 auto;
}

.risks-header h2 {
        font-size: 36px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.risks-header p {
    font-size: 24px;
    color: #777;
    line-height: 1.7;
}

@media (max-width: 480px) {
    .risks-header p  {
        font-size: 18px;
    }
}

.risks-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.risks-photo {
    flex-shrink: 0;
    align-self: center;
    height: clamp(260px, 28vw, 360px);
    overflow: hidden;
}

.risks-photo img {
    height: 100%;
    width: auto;
    display: block;
}

.risks-photo-left {
    flex-shrink: 0;
}

.risks-photo-right {
    flex-shrink: 0;
}

.risks-cards {
    display: flex;
    gap: 20px;
    flex: 1;
    max-width: 740px;
    padding: 0 clamp(24px, 3vw, 48px);
}

.risk-card {
    flex: 1;
    /* background: var(--white); */
    border: 1.5px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px 28px;
}

.risk-card h3 {
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 26px;
    letter-spacing: -0.5px;
}

.risk-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.risk-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #848688;
    line-height: 1.45;
}

.risk-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    min-width: 16px;
    background: var(--yellow);
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    margin-top: 2px;
}


@media (max-width: 1100px) {
    .risks-photo-left,
    .risks-photo-right {
        display: none;
    }

    .risks-content {
        padding: 0 40px;
    }
}

@media (max-width: 640px) {
    .risks-cards {
        flex-direction: column;
    }

    .risks-x-mark {
        display: none;
    }
}

@media (max-width: 768px) {
    .problem-overlay-left {
        transform: translate(-90%, -50%);
        font-size: 14px;
    }

    .problem-overlay-right {
        transform: translate(10%, -50%);
    }

    .problem-overlay-right img {
        height: 36px;
    }
}

/* Footer */
.footer {
    background: #0d0d0d;
    color: var(--white);
}

.footer-main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 72px 60px 56px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: #1e1e1e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--yellow);
    color: var(--black);
}

.footer-col h4 {
    font-family: 'Paralucent', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--yellow);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.footer-contact-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--white);
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-list li a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1300px;
    margin: 0 auto;
    padding: 24px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p, .footer-bottom a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
    display: flex;
    gap: 28px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--yellow);
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        padding: 60px 40px 48px;
    }
}

@media (max-width: 640px) {
    .footer-main {
        grid-template-columns: 1fr;
        padding: 48px 24px 40px;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        gap: 12px;
    }
}

/* Sistema Modular Section */
.sistema-section {
    position: relative;
    background-image: url('../img/sistema-section/background.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sistema-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.62); */
    z-index: 0;
}

.sistema-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 600px;
}

/* Left — diamond badge */
.sistema-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 180px 0;
}

.sistema-badge {
    position: relative;
    width: clamp(320px, 42vw, 540px);
}

.sistema-badge-bg {
    width: 100%;
    height: auto;
    display: block;
}

.sistema-badge-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    /* left point of the shape occupies ~18% — offset text right */
    padding: 40% 8% 12% 50%;
    gap: 14px;
}

.sistema-badge-title {
    font-family: 'Paralucent', sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.sistema-badge-logo {
    height: 126px;
    width: auto;
    display: block;
}

@media (max-width: 940px) {
    .sistema-badge-title
        {
            font-size: 44px;
        }
    .sistema-badge-logo {
        height: 90px;
    }
}

/* Right — features list */
.sistema-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 80px 60px 20px;
}

.sistema-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.sistema-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Paralucent', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--yellow);
}

.sistema-icon {
    flex-shrink: 0;
    /* width: 28px;
    height: 28px; */
    object-fit: contain;
    display: block;
}

@media (max-width: 1024px) {
    .sistema-content {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .sistema-left {
        padding: 60px 40px 20px;
    }

    .sistema-badge {
        width: 360px;
    }

    .sistema-right {
        padding: 20px 40px 60px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .sistema-left {
        padding: 48px 24px 16px;
    }

    .sistema-right {
        padding: 16px 24px 48px;
    }

    .sistema-feature {
        gap: 16px;
        font-size: 18px;
    }

    .sistema-badge-text {
                padding: 25% 0% 10% 40%;
    }
}

/* Locação Section */
.locacao-section {
    background: #38383b;
    overflow: hidden;
    padding: 80px 0;
}

.locacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 600px;
}

.locacao-left {
    padding: 0 40px 80px 70px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}

/* .locacao-right {
    overflow: hidden;
} */

.locacao-right p {
    color: #848688;
    text-align: right;
    padding-right: 60px;
    margin-top: 10px;
}

.locacao-image-wrap {
    width: 100%;
    height: 100%;
}

.locacao-img {
    width: 100%;
    height: 100%;
    /* object-fit: cover;
    display: block; */
}

.locacao-label {
    display: block;
    font-size: 52px;
    font-weight: 500;
    color: var(--yellow);
    margin-bottom: 0px;
}

.locacao-heading {
    font-family: 'Paralucent', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.locacao-desc {
    font-size: 24px;
    color: #848688;
    margin-bottom: 36px;
    max-width: 500px;
}

.locacao-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 48px;
}

.locacao-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 24px;
    font-weight: 500;
    color: var(--yellow);
}

.locacao-features li img {
    /* width: 28px;
    height: 28px; */
    object-fit: contain;
    flex-shrink: 0;
}

.locacao-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.locacao-outline-btn {
    padding: 15px 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.locacao-outline-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

/* Locação — Como funciona */
.locacao-steps {
    padding: 60px 60px 80px;
}

.locacao-steps-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.locacao-steps-title {
    font-family: 'Paralucent', sans-serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.locacao-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.locacao-step {
    background-image: url('../img/locacao-section/background-steps.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.step-number {
    font-family: 'Paralucent', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 500;
    color: var(--yellow);
    line-height: 1;
}

.step-title {
    font-family: 'Paralucent', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--yellow);
    line-height: 1.2;
}

.step-desc {
    font-size: 16px;
    color: #848688;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .locacao-steps {
        padding: 48px 40px 60px;
    }

    .locacao-steps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .locacao-step {
        padding: 28px 48px 28px 28px;
                margin-right: 40px;
    }
}

@media (max-width: 640px) {
    .locacao-steps {
        padding: 40px 24px 48px;
    }
}

@media (max-width: 1024px) {
    .locacao-content {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .locacao-right {
        height: 360px;
        order: -1;
    }

    .locacao-left {
        padding: 60px 40px;
    }
}

@media (max-width: 640px) {
    .locacao-right {
        height: 260px;
    }

    .locacao-left {
        padding: 48px 24px;
    }

    .locacao-buttons {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .locacao-outline-btn {
        text-align: center;
    }
}

/* Sale Section */
.sale-section {
    background: #0d0d0d;
    overflow: hidden;
    padding: 80px 0;
}

.sale-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 600px;
}

.sale-left {
    overflow: hidden;
}

.sale-image-wrap {
    width: 100%;
    height: 100%;
}

.sale-img {
    width: 100%;
    height: 100%;
    /* object-fit: cover;
    display: block; */
}

.sale-right {
    padding: 80px clamp(40px, 8vw, 120px) 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sale-label {
    display: block;
    font-size: clamp(28px, 3vw, 52px);
    font-weight: 500;
    color: var(--yellow);
    /* text-transform: uppercase; */
    /* letter-spacing: 1.5px; */
    margin-bottom: 0px;
}

.sale-heading {
    font-family: 'Paralucent', sans-serif;
    font-size: clamp(36px, 4.5vw, 36px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.sale-desc {
    font-size: 24px;
    color: #848688;
    margin-bottom: 36px;
}

.sale-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 48px;
}

.sale-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 24px;
    font-weight: 500;
    color: var(--yellow);
}

.sale-features li img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.sale-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--yellow);
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    flex-shrink: 0;
}

.sale-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.sale-outline-btn {
    padding: 15px 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.sale-outline-btn:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

@media (max-width: 1024px) {
    .sale-content {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .sale-left {
        height: 360px;
    }

    .sale-right {
        padding: 60px 40px;
    }
}

@media (max-width: 640px) {
    .sale-left {
        height: 260px;
    }

    .sale-right {
        padding: 48px 24px;
    }

    .sale-buttons {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .sale-outline-btn {
        text-align: center;
    }
}

/* Benefits Section */
.benefits-section {
    background: #f5f5f5 url('../img/benefits-section/background.jpg') center center / 100% 100% no-repeat;
    padding: 90px 0 80px;
    overflow: hidden;
}

@media (max-width: 640px) {
    .benefits-section {
        background-size: cover;
    }
}

.benefits-header {
    text-align: center;
    padding: 0 40px 60px;
    max-width: 680px;
    margin: 0 auto;
}

.benefits-header h2 {
    font-size: 36px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.benefits-header p {
    font-size: 24px;
    color: #848688;
    line-height: 1.7;
}

@media (max-width: 480px) {
    .benefits-header p {
        font-size: 18px;
    }
}

.benefits-carousel-wrapper {
    position: relative;
}

.benefits-track {
    display: flex;
    gap: 20px;
    padding: 10px 0 10px 40px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    cursor: grab;
    user-select: none;
}

.benefits-track.dragging {
    cursor: grabbing;
    transition: none;
}

.benefit-card {
    width: calc(20vw - 28px);
    min-width: 180px;
    /* background: var(--white); */
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.benefit-photo {
    position: relative;
}

.benefit-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.benefit-icon {
    position: absolute;
    bottom: -23px;
    left: 24px;
    width: 48px;
    height: 48px;
    /* background: var(--yellow); */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    /* width: 26px;
    height: 26px; */
    object-fit: contain;
    display: block;
}

.benefit-body {
    padding: 36px 24px 28px;
}

.benefit-body h3 {
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.benefit-body p {
    font-size: 14px;
    color: #848688;
    line-height: 1.55;
}

.benefits-nav {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 55px;
    height: 112px;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.benefits-nav img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.benefits-nav:hover {
    opacity: 0.75;
    transform: translateY(-50%) scale(1.08);
}

.benefits-prev {
    left: 10px;
}

.benefits-next {
    right: 10px;
}

.benefits-nav.hidden {
    opacity: 0;
    pointer-events: none;
}

.benefits-cta {
    text-align: center;
    margin-top: 52px;
}

.benefits-cta .primary-btn {
    padding: 18px 64px;
    font-size: 15px;
    border-radius: 10px;
}

/* Gallery Section */
.gallery-section {
    background: var(--white);
    padding: 12px;
}

.gallery-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    /* aspect-ratio: 4 / 3; */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Demonstration Section */
.demo-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 100px 0;
}

.demo-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.demo-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.demo-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.demo-left {
    flex: 0 0 auto;
    width: 48%;
}

.demo-media {
    position: relative;
    display: inline-block;
    width: 100%;
}

.demo-media > img {
    width: 100%;
    height: auto;
    display: block;
}

.demo-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.demo-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.demo-play img {
    width: clamp(56px, 5vw, 80px);
    height: auto;
    display: block;
}

.demo-right {
    flex: 1;
    min-width: 0;
    color: var(--white);
    padding: 0 clamp(40px, 6vw, 100px);
}

.demo-right h2 {
    font-size: 36px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.demo-right > p {
    font-size: 18px;
    color: #848688;
    line-height: 1.7;
    margin-bottom: 24px;
}

.demo-label {
    display: block;
    font-size: 13px;
    color: #848688;
    margin-bottom: 32px;
}

.demo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 44px;
}

.demo-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: #848688;
}

.demo-list li::before {
    content: '';
    width: 16px;
    height: 16px;
    min-width: 16px;
    background: var(--yellow);
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.demo-cta {
    border-radius: 8px;
    padding: 18px 40px;
    font-size: 15px;
}

@media (max-width: 900px) {
    .demo-section {
        padding: 80px 0;
    }

    .demo-content {
        flex-direction: column;
    }

    .demo-left {
        width: 100%;
    }

    .demo-right {
        padding: 40px;
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal[open] {
    opacity: 1;
    pointer-events: all;
}

.video-modal::backdrop {
    display: none;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.video-modal-inner {
    position: relative;
    z-index: 1;
    width: min(900px, 90vw);
    aspect-ratio: 16 / 9;
}

.video-modal-inner iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.video-modal-close:hover {
    opacity: 1;
}

/* Gallery Works Section */
.gallery-works-section {
    background: var(--yellow);
    padding: 90px clamp(40px, 6vw, 100px) 80px;
}

.gallery-works-header {
    text-align: center;
    margin-bottom: 56px;
}

.gallery-works-header h2 {
    font-size: 36px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.gallery-works-header p {
    font-size: 24px;
    color: #848688;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .gallery-works-header p {
        font-size: 18px;
    }
}

.gallery-works-grid {
    columns: 3;
    column-gap: 20px;
}

.gallery-works-item {
    break-inside: avoid;
    margin-bottom: 40px;
}

.gallery-works-photo {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-works-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-works-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--yellow);
}

.gallery-works-photo:hover img {
    transform: scale(1.05);
}

.gallery-works-photo:hover .gallery-works-overlay {
    opacity: 1;
}

.gallery-works-info {
    padding: 15px 4px 0;
}

.gallery-works-info h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 2px;
}

.gallery-works-bottom {
    text-align: center;
    margin-top: 60px;
}

.gallery-works-bottom p {
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 500;
    color: var(--black);
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin-bottom: 32px;
}

.gallery-works-btn {
    display: inline-block;
    padding: 16px 48px;
    border: 2px solid var(--black);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
    background: transparent;
}

.gallery-works-btn:hover {
    background: var(--black);
    color: var(--yellow);
}

@media (max-width: 900px) {
    .gallery-works-grid {
        columns: 2;
    }
}

@media (max-width: 560px) {
    .gallery-works-grid {
        columns: 1;
    }
}

/* Dados Técnicos Section */
.dados-section {
    background: var(--white);
    padding: 100px 0;
    overflow: hidden;
}

.dados-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* align-items: center; */
    gap: 0;
}

.dados-left {
    padding-right: 60px;
}

.dados-left h2 {
    font-family: 'Paralucent', sans-serif;
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 500;
    color: var(--black);
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.dados-subtitle {
    font-size: clamp(14px, 1.3vw, 24px);
    color: #999;
    line-height: 1.5;
    margin-bottom: 48px;
}

.dados-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 48px;
}

.dados-table tr {
    border-top: 1px solid #e0e0e0;
}

.dados-table tr:last-child {
    border-bottom: 1px solid #e0e0e0;
}

.dados-table td {
    padding: 18px 0;
    font-size: 14px;
    vertical-align: top;
    line-height: 1.5;
}

.dados-label {
    color: #8b8d87;
    font-weight: 500;
    width: 45%;
    padding-right: 20px;
}

.dados-value {
    color: #8b8d87;
    font-weight: 400;
}

.dados-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.dados-pdf-btn {
    padding: 15px 28px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    border: 2px solid #ccc;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.dados-pdf-btn:hover {
    border-color: var(--black);
}

.dados-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.dados-img {
    width: 100%;
    max-width: 580px;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .dados-content {
        grid-template-columns: 1fr;
        padding: 0 40px;
        gap: 48px;
    }

    .dados-left {
        padding-right: 0;
    }

    .dados-right {
        justify-content: center;
    }

    .dados-img {
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .dados-section {
        padding: 72px 0;
    }

    .dados-content {
        padding: 0 24px;
    }

    .dados-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .dados-pdf-btn {
        width: 100%;
        text-align: center;
    }
}

/* FAQ Section */
.faq-section {
    background: var(--light-gray2);
    padding: 100px 40px;
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.faq-container > h2 {
    font-family: 'Paralucent', sans-serif;
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 500;
    color: var(--black);
    text-align: center;
    margin-bottom: 56px;
    letter-spacing: -1px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'ParalucentText', 'Paralucent', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--black);
}

.faq-item.active .faq-question {
    color: var(--black);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #999;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    /* color: #1a4fff; */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: 52px;
}

.faq-cta .primary-btn {
    padding: 18px 48px;
    font-size: 15px;
    border-radius: 10px;
}

@media (max-width: 640px) {
    .faq-section {
        padding: 72px 20px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}

/* Orçamento Section */
.orcamento-section {
    background: var(--light-gray2);
    padding: 0 40px 80px 40px;
}

.orcamento-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #0d0d0d;
    border: 2px solid var(--yellow);
    border-radius: 20px;
    padding: 64px 72px 60px;
    position: relative;
    overflow: visible;
}

.orcamento-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 180px;
    height: auto;
    pointer-events: none;
}

.orcamento-header {
    text-align: center;
    margin-bottom: 48px;
}

.orcamento-header h2 {
    font-family: 'Paralucent', sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.orcamento-header p {
    font-size: clamp(14px, 1.4vw, 24px);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.orcamento-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.2px;
}

.form-group .required {
    color: var(--white);
}

.form-group input,
.form-group select {
    background: var(--white);
    border: 1px solid #2e2e2e;
    border-radius: 8px;
    padding: 14px 16px;
    font-family: 'ParalucentText', sans-serif;
    font-size: 14px;
    color: #8b8d87;
    outline: none;
    transition: border-color 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input::placeholder {
    color: #8b8d87;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--yellow);
    /* color: var(--white); */
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 8px;
}

.form-submit-btn {
    padding: 16px 48px;
    font-size: 15px;
    border-radius: 8px;
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Validação — campo com erro */
.form-group input.input-error,
.form-group select.input-error {
    border-color: #e05252 !important;
}

.field-error {
    font-size: 12px;
    color: #e05252;
    margin-top: 4px;
}

/* Feedback de envio */
.form-feedback {
    grid-column: 1 / -1;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.form-feedback--sucesso {
    background: rgba(52, 199, 89, 0.2);
    border: 1px solid rgba(52, 199, 89, 0.5);
    color: #86efac;
}

.form-feedback--erro {
    background: rgba(224, 82, 82, 0.2);
    border: 1px solid rgba(224, 82, 82, 0.5);
    color: #fca5a5;
}

.form-whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: var(--transition);
}

.form-whatsapp-link span {
    color: var(--yellow);
}

.form-whatsapp-link:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .form-whatsapp-link {
        display: inline;
    }
    .orcamento-card {
        padding: 48px 28px 44px;
    }

    .orcamento-icon {
        width: 120px;
    }

    .orcamento-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .orcamento-section {
        padding: 60px 16px;
    }

    .orcamento-card {
        padding: 40px 20px 36px;
    }
}