/* =========================================================
   GRUPO LOPES LEAL
   STYLE.CSS
========================================================= */

:root {
    --black: #0a0a0a;
    --black-soft: #111111;
    --gold: #c69235;
    --gold-light: #d7ad5d;
    --white: #ffffff;
    --gray-50: #f7f7f5;
    --gray-100: #eeeeeb;
    --gray-300: #d2d2cc;
    --gray-600: #686862;
    --gray-800: #292925;

    --container: 1180px;
    --radius: 4px;

    --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    --transition: 0.3s ease;
}

/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

/* =========================================================
   BASE
========================================================= */

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--gold);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.section-heading h2,
.about-content h2,
.location-content h2,
.contact-copy h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.section-heading h2 span,
.about-content h2 span,
.location-content h2 span,
.contact-copy h2 span {
    color: var(--gold);
}

.section-heading p {
    margin-top: 20px;
    max-width: 650px;
    color: var(--gray-600);
    font-size: 1.05rem;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform var(--transition),
                background var(--transition),
                color var(--transition),
                border-color var(--transition);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-light);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
    background: rgba(0, 0, 0, 0.12);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--gold);
    color: var(--black);
}

/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: var(--white);
    min-width: 155px;
}

.logo span {
    margin-bottom: 4px;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
}

.logo strong {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    font-weight: 600;
    transition: color var(--transition);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav a:hover {
    color: var(--white);
}

.nav a:hover::after {
    width: 100%;
}

.header-btn {
    min-height: 44px;
    padding: 0 20px;
    font-size: 0.68rem;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    background: transparent;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.72) 34%,
            rgba(0, 0, 0, 0.22) 75%,
            rgba(0, 0, 0, 0.08) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 70px;
}

.hero-content h1 {
    max-width: 720px;
    color: var(--white);
    font-size: clamp(2.7rem, 5.5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 750;
}

.hero-content h1 span {
    display: block;
    color: var(--gold-light);
}

.hero-content p {
    max-width: 620px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 120px;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-icon {
    flex: 0 0 auto;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.trust-item strong {
    display: block;
    color: var(--white);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.trust-item p {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.72rem;
    line-height: 1.4;
}

/* =========================================================
   SERVICES
========================================================= */

.services {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.service-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.28),
        transparent 50%
    );
}

.service-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.04);
}

.service-content {
    padding: 30px;
}

.service-number {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.service-content h3 {
    margin-top: 8px;
    font-size: 1.45rem;
    line-height: 1.15;
}

.service-content p {
    min-height: 120px;
    margin-top: 16px;
    color: var(--gray-600);
    font-size: 0.92rem;
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--black);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition: color var(--transition);
}

.service-link:hover {
    color: var(--gold);
}

/* =========================================================
   DIFFERENTIATORS
========================================================= */

.differentiators {
    background: var(--black);
    color: var(--white);
}

.section-heading.light h2 {
    color: var(--white);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.difference {
    padding: 34px 28px 15px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.difference:not(:first-child) {
    padding-left: 28px;
}

.difference:last-child {
    border-right: 0;
}

.difference > span {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
}

.difference h3 {
    margin-top: 24px;
    max-width: 210px;
    font-size: 1.15rem;
    line-height: 1.2;
}

.difference p {
    margin-top: 14px;
    max-width: 245px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.88rem;
}

/* =========================================================
   ABOUT
========================================================= */

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 24px;
    left: -24px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
}

.about-image img {
    position: relative;
    z-index: 1;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.about-content p {
    margin-top: 22px;
    color: var(--gray-600);
    font-size: 1rem;
}

.about-content .btn {
    margin-top: 30px;
}

/* =========================================================
   LOCATION
========================================================= */

.location {
    background: var(--gray-50);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.location-content p {
    margin-top: 22px;
    max-width: 560px;
    color: var(--gray-600);
}

.location-box {
    margin-top: 32px;
    padding: 24px;
    border-left: 2px solid var(--gold);
    background: var(--white);
}

.location-box strong {
    font-size: 1rem;
}

.location-box p {
    margin-top: 4px;
    font-size: 0.88rem;
}

.location-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at center,
            rgba(198, 146, 53, 0.2),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            #151515,
            #272727
        );
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-placeholder::before,
.map-placeholder::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(198, 146, 53, 0.3);
    border-radius: 50%;
}

.map-placeholder::before {
    width: 240px;
    height: 240px;
}

.map-placeholder::after {
    width: 170px;
    height: 170px;
}

.map-circle {
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 12px rgba(198, 146, 53, 0.12);
}

.map-placeholder span {
    position: absolute;
    margin-top: 75px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 110px 0;
    background: var(--black);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.contact-copy h2 {
    color: var(--white);
}

.contact-copy p {
    max-width: 500px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-copy .btn {
    margin-top: 30px;
}

.contact-phone {
    margin-top: 20px;
    color: var(--gold-light);
    font-size: 1.15rem;
    font-weight: 700;
}

.contact-form {
    padding: 38px;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    outline: none;
    border-radius: 2px;
    background: #0d0d0d;
    color: var(--white);
    transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-button {
    width: 100%;
}

.form-note {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
    text-align: center;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #050505;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 1fr;
    gap: 60px;
    padding: 70px 0;
}

.footer-brand p {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.8rem;
}

.footer-logo {
    display: inline-flex;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-column h4 {
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.82rem;
    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.32);
    font-size: 0.7rem;
}

/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-float {
    position: fixed;
    z-index: 1100;
    right: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 58px;
    padding: 0 17px;
    border-radius: 50px;
    background: #25d366;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    font-size: 0.7rem;
    font-weight: 800;
    transition: transform var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}

.whatsapp-float span {
    display: flex;
}

.whatsapp-icon svg {
    width: 28px;
    height: 28px;
    display: block;
    fill: currentColor;
}

/* =========================================================
   RESPONSIVIDADE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .nav {
        gap: 18px;
    }

    .header-btn {
        display: none;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 360px;
    }

    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .difference:nth-child(2) {
        border-right: 0;
    }

    .difference:nth-child(3),
    .difference:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .about-grid,
    .location-grid,
    .contact-grid {
        gap: 50px;
    }

}

/* =========================================================
   RESPONSIVIDADE — MOBILE
========================================================= */

@media (max-width: 760px) {

    .container {
        width: min(100% - 32px, 1180px);
    }

    .section {
        padding: 75px 0;
    }

    /* HEADER */

    .header {
        padding: 14px 0;
    }

    .logo strong {
        font-size: 1.05rem;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 12px;
        background: rgba(10, 10, 10, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 14px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav a:last-child {
        border-bottom: 0;
    }

    .menu-toggle {
        display: block;
    }

    /* HERO */

    .hero {
        min-height: 680px;
    }

    .hero-image {
        object-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.35) 0%,
                rgba(0, 0, 0, 0.78) 65%,
                rgba(0, 0, 0, 0.94) 100%
            );
    }

    .hero-content {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-content h1 {
        font-size: clamp(2.45rem, 12vw, 3.8rem);
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* TRUST */

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:first-child {
        min-height: 90px;
        border-left: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* SERVICES */

    .services-grid {
        gap: 18px;
    }

    .service-image {
        height: 270px;
    }

    .service-content p {
        min-height: auto;
    }

    /* DIFFERENTIALS */

    .differentiators-grid {
        grid-template-columns: 1fr;
    }

    .difference,
    .difference:not(:first-child) {
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .difference:last-child {
        border-bottom: 0;
    }

    /* ABOUT */

    .about-grid,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 55px;
    }

    .about-image::before {
        top: 15px;
        left: -12px;
    }

    /* LOCATION */

    .location-grid {
        gap: 45px;
    }

    .location-visual {
        min-height: 300px;
    }

    /* CONTACT */

    .contact-grid {
        gap: 50px;
    }

    .contact-form {
        padding: 24px;
    }

    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 55px 0;
    }

    /* WHATSAPP */

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 58px;
        min-width: 58px;
        padding: 0;
    }

}

/* =========================================================
   REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}