:root {
    /* Azul como cor principal, vermelho como apoio */
    --primary: #91c0cb;
    --primary-dark: #6fa5b3;
    --secondary: #dd755f;
    --secondary-dark: #c45f4b;
    --bg: #f5f5f7;
    --text: #222222;
    --muted: #6b6b6b;
    --white: #ffffff;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.08);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-pill: 999px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #ffffff;
    color: var(--text);
}

/* Reveal ao rolar */
.section-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.topbar {
    background: var(--primary);
    color: var(--white);
    font-size: 0.9rem;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    gap: 1rem;
}

.topbar-text {
    opacity: 0.9;
}

.topbar-cta {
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar-cta:hover {
    background: rgba(255, 255, 255, 0.12);
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(245, 245, 247, 0.88);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.logo-mark {
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill);
    background: var(--primary);
    color: var(--white);
    font-size: 0.9rem;
}

.logo-text {
    font-size: 1rem;
    color: #333;
}

.logo-img {
    max-height: 42px;
    width: auto;
    display: block;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.94rem;
}

.nav a {
    position: relative;
    color: var(--muted);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    background: var(--secondary);
    border-radius: 999px;
    transition: width 0.18s ease-out;
}

.nav a:hover {
    color: var(--text);
}

.nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.55rem 1rem;
    border-radius: var(--radius-pill);
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.16);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--secondary);
    filter: none;
    transform: translateY(-1px);
}

.hero {
    padding: 4rem 0 3.5rem;
    background-color: #f1f7f9;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: center;
    gap: 2.75rem;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 2.9vw + 1.5rem, 3rem);
    line-height: 1.13;
    margin: 0 0 1rem;
    color: #191919;
}

.hero-text h1 span {
    color: var(--primary-dark);
}

.hero-text p {
    margin: 0 0 1.3rem;
    color: #444;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.3rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease,
        background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
    background: var(--secondary);
    filter: none;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    border-color: rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.7);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.9);
}

.hero-image {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: transparent;
}

.section {
    padding: 3.2rem 0;
}

.section-alt {
    background: #f4f7f9;
}

.section-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.3rem;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 2.1rem;
}

.section-header h2 {
    margin: 0 0 0.6rem;
    font-size: 1.6rem;
}

.section-header p {
    margin: 0;
    color: var(--muted);
}

.section-text h2 {
    margin: 0 0 0.8rem;
    font-size: 1.6rem;
}

.section-text p {
    margin: 0 0 0.8rem;
    color: var(--muted);
    font-size: 0.96rem;
}

.bullets {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.bullets li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    color: #444;
}

.bullets li::before {
    content: "";
    position: absolute;
    left: 0.25rem;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

.section-highlight {
    display: grid;
    gap: 0.8rem;
}

.stat-card {
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.stat-number {
    display: block;
    font-weight: 700;
    font-size: 1.4rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
}

.card p {
    margin: 0 0 0.8rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.88rem;
    color: #444;
}

.card ul li::before {
    content: "• ";
    color: var(--primary);
}

.units-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section-benefits {
    background-color: #edf4f7;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.benefit-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 1.1rem 1.15rem;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    margin: 0 0 0.4rem;
    font-size: 0.98rem;
}

.benefit-item p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--muted);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.product-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.1rem 1.3rem;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
}

.product-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    background: #e5edf0;
}

.product-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.badge {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-promo {
    background: rgba(221, 117, 95, 0.9);
    color: #ffffff;
}

.product-card h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
}

.product-info {
    margin: 0 0 0.4rem;
    font-size: 0.88rem;
    color: var(--muted);
}

.product-price {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.product-actions {
    margin: 0.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.product-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: color 0.2s ease, transform 0.2s ease;
}

.product-link:hover {
    color: var(--secondary-dark);
    transform: translateY(-1px);
}

.product-link-whatsapp {
    color: #25d366;
}

.product-link-whatsapp:hover {
    color: #128c7e;
}

.promo-section {
    background: #f9fafb;
}

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

.promo-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.promo-card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #e5edf0;
    overflow: hidden;
}

.promo-badge-desconto {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-pill);
    background: var(--secondary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.promo-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.promo-card-body {
    padding: 1.5rem 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.promo-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.promo-card p {
    margin: 0 0 0.6rem;
    font-size: 0.95rem;
    color: var(--muted);
    flex: 1;
}

.promo-list {
    list-style: disc;
    padding-left: 1.1rem;
    margin: 0 0 0.9rem;
    font-size: 0.88rem;
    color: #444;
}

.promo-card-secondary {
    background: #ffffff;
}

.promo-card-secondary .promo-card-image-wrap {
    background: #e8f2f5;
}

.promo-note {
    font-size: 0.85rem;
    color: #374151;
    margin-top: 0.6rem;
}

.testimonial-section {
    background: #f9fafb;
}

.avaliacao-cta-wrap {
    text-align: center;
    margin-bottom: 1.5rem;
}

.btn-avaliacao-google {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.carousel-avaliacoes-wrap {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--primary-dark);
    transition: background 0.2s, box-shadow 0.2s;
}

.carousel-btn:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.carousel-prev { left: -12px; }
.carousel-next { right: -12px; }

.carousel-avaliacoes {
    overflow: hidden;
    padding: 0 0.5rem;
}

.carousel-avaliacoes .carousel-track {
    display: flex;
    transition: transform 0.4s ease-out;
}

.carousel-avaliacoes .carousel-item {
    flex: 0 0 100%;
    min-width: 0;
    padding: 0 0.5rem;
}

.carousel-empty {
    text-align: center;
    color: var(--muted);
    padding: 2rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.carousel-dots button:hover {
    background: var(--primary);
}

.carousel-dots button.active {
    background: var(--primary-dark);
    transform: scale(1.2);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin: 0;
}

.avatar-inicial {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.3rem 1.4rem;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
    display: grid;
    gap: 0.6rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    margin: 0;
    font-size: 0.9rem;
    color: #374151;
}

.testimonial-name {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 600;
}

.testimonial-location {
    margin: 0;
    font-size: 0.8rem;
    color: var(--muted);
}

.unit-photo {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0.7rem;
    background: #e5edf0;
}

.unit-photo img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.unit-card {
    position: relative;
}

.unit-address {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 0.25rem;
}

.card-link {
    display: inline-flex;
    margin-top: 0.5rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.card-link:hover {
    color: var(--secondary-dark);
    text-decoration: underline;
}

.badge-panel {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.badge-panel span {
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-pill);
    background: rgba(145, 192, 203, 0.12);
    border: 1px solid rgba(145, 192, 203, 0.45);
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

.section-cta {
    background: #6fa5b3;
    color: var(--white);
}

.section-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.8rem;
}

.section-cta h2 {
    margin: 0 0 0.6rem;
    font-size: 1.6rem;
}

.section-cta p {
    margin: 0;
    font-size: 0.96rem;
    opacity: 0.92;
}

.section-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.contato-form-card {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 1.6rem 1.8rem;
    border-radius: 14px;
    max-width: 480px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
}

.contato-form-card h3 {
    margin: 0 0 0.9rem;
    font-size: 1.05rem;
    color: #f9fafb;
}

.contato-form {
    display: grid;
    gap: 0.8rem;
}

.contato-field {
    display: grid;
    gap: 0.25rem;
}

.contato-field label {
    font-size: 0.85rem;
    color: #e5e7eb;
}

.contato-field input,
.contato-field textarea {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(15, 23, 42, 0.6);
    color: #f9fafb;
    font-size: 0.9rem;
    outline: none;
}

.contato-field input::placeholder,
.contato-field textarea::placeholder {
    color: rgba(229, 231, 235, 0.7);
}

.contato-field input:focus,
.contato-field textarea:focus {
    border-color: #dd755f;
    box-shadow: 0 0 0 1px rgba(221, 117, 95, 0.4);
}

.contato-submit {
    margin-top: 0.4rem;
    width: 100%;
    justify-content: center;
}

.btn-light {
    background: var(--white);
    color: #111827;
    border-color: transparent;
}

.btn-light:hover {
    filter: brightness(0.97);
    transform: translateY(-1px);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
}

.footer {
    background: var(--secondary);
    color: #000;
    font-weight: 700;
    padding: 2.4rem 0 2rem;
}

.footer-inner {
    text-align: center;
    display: grid;
    gap: 0.4rem;
}

.footer-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    justify-content: center;
}

.footer .logo-mark {
    background: var(--primary);
}

.footer .logo-text {
    color: #000;
    font-weight: 700;
}

.footer-text {
    margin: 0.4rem 0;
    font-size: 0.9rem;
    color: #000;
    font-weight: 700;
}

.footer-copy {
    margin: 0;
    font-size: 0.8rem;
    color: #000;
    font-weight: 700;
}

@media (max-width: 960px) {
    .nav {
        display: none;
    }

    .hero-inner,
    .section-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-image {
        margin-top: 1.8rem;
    }

    .hero-card-secondary {
        right: 4%;
        bottom: -8%;
        width: 82%;
    }

    .cards-grid,
    .product-grid,
    .units-grid,
    .benefits-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .promo-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .section-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-inner {
        gap: 0.8rem;
    }

    .hero {
        padding-top: 2.4rem;
    }

    .cards-grid,
    .product-grid,
    .units-grid,
    .benefits-grid,
    .testimonial-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-card-secondary {
        position: relative;
        inset: auto;
        width: 100%;
        margin-top: 1rem;
    }
}

