@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700;800;900&display=swap");

:root {
    --color-yellow: #fef343;
    --color-orange: #f08825;
    --color-orange-strong: #dd4724;
    --color-red: #b31b28;
    --color-wine: #8f1430;
    --color-dark: #34111f;
    --color-white: #ffffff;
    --color-text: #5b5b66;
    --color-soft: #fff7ef;
    --shadow-main: 0 20px 60px rgba(52, 17, 31, 0.18);
    --radius-main: 22px;
    --transition: all .3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    /* background: #fff; */
    color: var(--color-white);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Heebo', sans-serif;
    line-height: 1.6;
    background: url("../images/bg-hero-section.png") center center / cover no-repeat;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: 'Heebo', sans-serif;
    line-height: 1.15;
    color: var(--color-white);
}

h1 {
    font-size: 60px;
    font-weight: 900;
}

h2 {
    font-size: 42px;
    font-weight: 800;
}

h3 {
    font-size: 28px;
    font-weight: 800;
}

h4 {
    font-size: 22px;
    font-weight: 700;
}

p {
    margin-bottom: 0;
}

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

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

.text-white {
    color: var(--color-white) !important;
}

.min-vh-100 {
    min-height: 100vh;
}

/* BOTÕES */
.button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    border: 0;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.button-primary {
    background: var(--color-yellow);
    color: var(--color-dark);
    box-shadow: 0 10px 30px rgba(242, 140, 40, 0.35);
}

.button-primary:hover {
    transform: translateY(-2px);
    color: var(--color-dark);
    opacity: .95;
}

.btn-block {
    width: 100%;
}

/* WHATSAPP */
.wpp-btn {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.20);
}

.wpp-btn:hover {
    color: #fff;
    transform: scale(1.05);
}

/* NAVBAR */
.navbar {
    padding: 16px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar .navbar-brand img {
    width: 110px;
}

.navbar .navbar-nav li {
    padding: 0 10px;
}

.navbar .navbar-nav li .nav-link {
    color: var(--color-white);
    font-weight: 600;
    font-size: 15px;
}

.navbar .navbar-nav li .nav-link:hover {
    color: var(--color-yellow);
}

.navbar .navbar-toggler {
    border: 0;
    color: var(--color-white);
    font-size: 28px;
}

.navbar .navbar-toggler:focus {
    outline: 0;
}

.navbar.navbar-fixed {
    background: var(--color-wine);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

/* HERO */
.hero-section {
    position: relative;
    min-height: 100vh;
    background:
        url("../images/solis_bg.png") center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    color: var(--color-white);
    padding-right: 24px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--color-yellow);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .8px;
}

.hero-text h1 {
    color: var(--color-white);
    max-width: 700px;
    margin-bottom: 20px;
}

.hero-metragem {
    display: inline-block;
    margin-bottom: 22px;
    padding: 10px 22px;
    border: 2px solid rgba(255,255,255,.8);
    border-radius: 18px;
    font-size: 80px;
    font-weight: 900;
    color: var(--color-yellow);
    background: rgba(255,255,255,.06);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0 0 22px 0;
}

.hero-highlights li {
    list-style: none;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--color-white);
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 600;
}

.hero-description {
    max-width: 620px;
    font-size: 18px;
    color: rgba(255,255,255,.92);
}

/* FORM HERO */
.hero-form-card {
    background: transparent;
    border-radius: var(--radius-main);
    padding: 34px;
    box-shadow: var(--shadow-main);
    max-width: 460px;
    margin-left: auto;
    border: 2px solid var(--color-white);
}

.form-title-wrap {
    margin-bottom: 24px;
}

.form-title-wrap h3 {
    color: var(--color-white);
    margin-bottom: 8px;
}

.form-title-wrap p {
    color: var(--color-white);
}

.form-group {
    margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ece5df;
    background: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 15px;
    color: var(--color-dark);
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 4px rgba(242, 140, 40, 0.12);
}

.form-feedback {
    display: none;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
}

/* .success-message {
    color: #0a8f4d;
} */

.error-message {
    color: var(--color-yellow);
}

/* SEÇÕES */
.section {
    padding: 100px 0;
}

/* .section-light {
    background: #fff;
} */

/* .section-gradient {
    background: linear-gradient(135deg, var(--color-orange-strong), var(--color-red) 65%, var(--color-wine));
} */

/* .section-dark {
    background: linear-gradient(135deg, #7f1430, var(--color-wine));
} */

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.title-top {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-orange-strong);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-top.light {
    color: var(--color-yellow);
}

.section-title h2 {
    max-width: 860px;
    margin: 0 auto;
}

/* CARDS E IMAGENS */
.image-box img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: var(--radius-main);
    box-shadow: var(--shadow-main);
}

.content-card {
    padding: 32px;
    height: 100%;
}

.content-card h3 {
    margin-bottom: 16px;
    color: var(--color-white);
}

.content-card p + p {
    margin-top: 12px;
}

.dark-card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(4px);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius-main);
}

.dark-card h3,
.dark-card p,
.dark-card strong {
    color: #fff;
}

/* GRID DE FEATURES */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
}

/* .feature-item {
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff;
    font-weight: 700;
    color: var(--color-wine);
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
} */

.feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-white);
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    line-height: 1;
    color: var(--color-yellow);
}

/* LISTA CHECK */
.check-list {
    margin: 22px 0 0 0;
    padding: 0;
}

.check-list li {
    position: relative;
    list-style: none;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-yellow);
    font-weight: 800;
}

/* DIFERENCIAIS */
.info-card {
    height: 100%;
    padding: 22px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff8f2, #fff);
    border: 1px solid #f4e2d4;
    color: var(--color-dark);
    font-size: 17px;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(52, 17, 31, 0.06);
}

.info-card span {
    display: inline-block;
    margin-right: 10px;
    color: var(--color-orange-strong);
    font-weight: 900;
}

/* LAZER */
.lazer-card {
    height: 100%;
    padding: 28px 22px;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    text-align: center;
    transition: var(--transition);
}

.lazer-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,.12);
}

.lazer-card img {
    height: 70px;
    margin: 0 auto 18px auto;
}

.lazer-card h4 {
    color: #fff;
    margin-bottom: 10px;
}

.lazer-card p {
    color: rgba(255,255,255,.82);
}

/* GALERIA */
.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-main);
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* MAP */
.map-box {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border-radius: var(--radius-main);
    overflow: hidden;
    box-shadow: var(--shadow-main);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
}

/* FOOTER */
footer {
    /* background: linear-gradient(135deg, var(--color-wine), #6e102b); */
    padding: 0 0 60px 0;
}

.footer-brand img {
    width: 120px;
    /* margin: 0 auto 20px auto; */
}

.footer-brand {
    display: flex;
    justify-content: center; /* centraliza */
    align-items: center;
    gap: 40px; /* espaço entre as logos */
    flex-wrap: wrap; /* evita quebrar feio em telas muito pequenas */
}

.footer-text {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    line-height: 1.7;
}

.content-diferenciais {
    text-align: center;
    padding: 15px;
    /* background: #FF675F;
    border-radius: 15px; */
    transition: all .3s ease;
}

.content-diferenciais img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.navbar-light .navbar-nav .nav-link:focus {
    color: var(--color-yellow);
}

/* .content-diferenciais img {
    filter: brightness(0) invert(1);
} */

/* RESPONSIVO */
@media (max-width: 1199px) {
    h1 {
        font-size: 50px;
    }

    .hero-form-card {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .navbar .navbar-nav {
        margin-top: 14px;
        padding: 14px;
        border-radius: 18px;
        background: rgba(155, 18, 50, 0.96);
    }

    .hero-section {
        padding: 120px 0 60px;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 32px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-metragem {
        font-size: 100px;
    }

    .section {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 24px;
    }

    .navbar .navbar-brand img {
        width: 96px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-highlights {
        gap: 10px;
    }

    .hero-highlights li {
        width: 100%;
        text-align: center;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-form-card {
        padding: 24px;
        border-radius: 18px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .image-box img,
    .gallery-item img {
        min-height: unset;
        height: 386px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .wpp-btn {
        width: 56px;
        height: 56px;
        font-size: 34px;
        right: 14px;
        bottom: 14px;
    }

    .pad-nav-bar {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }

    .map-col {
        margin-top: 50px;
    }

    .hero-text {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .content-diferenciais img {
        height: 55px !important; /* antes era 75px */
    }

    .hero-section .col-lg-7 {
        margin-top: 70px;
    }

    .footer-brand {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 40px !important;
    }
}