﻿/* ============================================================
   RICARDÃƒO MARIDO DE ALUGUEL â€” DESIGN SYSTEM & STYLES
   ============================================================ */

/* ----------------------------------------------------------
   CSS VARIABLES
   ---------------------------------------------------------- */
:root {
    /* Colors */
    --blue-primary: #174D73;
    --blue-dark: #103B59;
    --orange-primary: #FBAE3B;
    --orange-strong: #F7941D;
    --yellow-light: #FFC55A;
    --white: #FFFFFF;
    --gray-light: #F5F6F7;
    --gray-medium: #68757F;
    --dark: #1A1A18;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Layout */
    --container: 1200px;
    --header-height: 72px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.35s ease;
}

/* ----------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 100vw;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

strong {
    font-weight: 600;
}

/* Focus states for accessibility */
:focus-visible {
    outline: 2px solid var(--orange-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Skip link (visually hidden, visible on focus) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 1000;
    background: var(--blue-primary);
    color: var(--white);
    padding: 12px 24px;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* ----------------------------------------------------------
   UTILITY: CONTAINER
   ---------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
    box-sizing: border-box;
}

/* ----------------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 100%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--blue-primary);
    line-height: 1.2;
    margin-bottom: 12px;
    max-width: 100%;
    word-wrap: break-word;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--gray-medium);
    max-width: 640px;
    margin-inline: auto;
    line-height: 1.6;
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9375rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    text-align: center;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
}

.btn:active {
    transform: scale(0.97);
}

.btn--primary {
    background-color: var(--orange-primary);
    color: var(--dark);
    padding: 14px 28px;
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background-color: var(--orange-strong);
    box-shadow: 0 4px 16px rgba(247, 148, 29, 0.3);
}

.btn--secondary {
    background-color: transparent;
    color: var(--blue-primary);
    border: 2px solid var(--blue-primary);
    padding: 12px 26px;
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
    background-color: var(--blue-primary);
    color: var(--white);
}

.btn--whatsapp {
    background-color: #25D366;
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
    background-color: #1ebe57;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn--xl {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.icon-whatsapp {
    flex-shrink: 0;
}

/* ----------------------------------------------------------
   HEADER
   ---------------------------------------------------------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: box-shadow var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo img {
    width: auto;
    height: 58px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: flex-end;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dark);
    transition: color var(--transition-fast);
    padding: 4px 0;
}

.header__link:hover {
    color: var(--blue-primary);
}

.header__cta {
    flex-shrink: 0;
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    z-index: 101;
}

.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.4vw, 2.85rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--blue-primary);
    letter-spacing: -0.02em;
}

.hero__subheadline {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--gray-medium);
    line-height: 1.5;
    max-width: 480px;
}

/* Hero eyebrow */
.hero__eyebrow {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orange-strong);
    margin-bottom: -8px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.875rem;
    color: var(--gray-medium);
    font-weight: 500;
}

.hero__trust span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__mascot-wrapper {
    position: relative;
    z-index: 1;
}

.hero__mascot {
    width: 100%;
    max-width: 480px;
    height: auto;
}

/* Hero decorative elements */
.hero__deco {
    position: absolute;
    z-index: 0;
    opacity: 0.45;
    transition: transform var(--transition-slow);
}

.hero__deco--1 {
    top: 5%;
    right: 10%;
    animation: float 4s ease-in-out infinite;
}

.hero__deco--2 {
    bottom: 15%;
    left: 5%;
    animation: float 5s ease-in-out infinite 0.5s;
}

.hero__deco--3 {
    top: 40%;
    right: 5%;
    animation: float 4.5s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ----------------------------------------------------------
   PROBLEM SECTION
   ---------------------------------------------------------- */
.problem {
    padding: 80px 0;
    background-color: var(--white);
}

.problem__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.problem__card {
    background: var(--gray-light);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.problem__card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.problem__icon {
    font-size: 2rem;
    line-height: 1;
}

.problem__card p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
}

.problem__callout {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange-strong);
}

/* ----------------------------------------------------------
   SERVICES â€” GALLERY GRID
   ---------------------------------------------------------- */
.gallery {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gallery-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.gallery-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder atÃ© as fotos reais serem enviadas pelo cliente */
.gallery-card__media--placeholder {
    background-color: rgba(23, 77, 115, 0.06);
    background-image:
        repeating-linear-gradient(45deg, rgba(23, 77, 115, 0.05) 0 10px, transparent 10px 20px),
        linear-gradient(135deg, rgba(23, 77, 115, 0.1), rgba(251, 174, 59, 0.16));
}

.gallery-card__label {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 14px 14px 12px;
    background: linear-gradient(0deg, rgba(26, 26, 24, 0.72), rgba(26, 26, 24, 0));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.25;
}

.gallery-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.gallery-card__type {
    font-size: 0.8125rem;
    color: var(--gray-medium);
}

.gallery-card__type span {
    color: var(--blue-primary);
    font-weight: 600;
}

.gallery-card__btn {
    margin-top: auto;
    width: 100%;
}

/* ----------------------------------------------------------
   HOW IT WORKS
   ---------------------------------------------------------- */
.how {
    padding: 80px 0;
    background-color: var(--white);
}

.how__steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.how__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 24px 16px;
    flex: 0 0 180px;
    border-radius: var(--radius-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.how__step:hover {
    transform: translateY(-4px);
    background: var(--gray-light);
    box-shadow: var(--shadow-sm);
}

.how__step:hover .how__step-icon {
    color: var(--orange-primary);
}

.how__step-number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--orange-primary);
    background: rgba(251, 174, 59, 0.12);
    padding: 4px 12px;
    border-radius: 20px;
}

.how__step-icon {
    color: var(--blue-primary);
    margin: 4px 0;
}

.how__step-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.how__step-text {
    font-size: 0.875rem;
    color: var(--gray-medium);
    line-height: 1.4;
}

.how__connector {
    flex: 0 0 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-primary), transparent);
    margin-top: 64px;
    opacity: 0.3;
}

.how__cta {
    text-align: center;
    margin-top: 40px;
}

/* ----------------------------------------------------------
   BENEFITS
   ---------------------------------------------------------- */
.benefits {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-card__icon {
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.benefit-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 10px;
}

.benefit-card__text {
    font-size: 0.9375rem;
    color: var(--gray-medium);
    line-height: 1.5;
}

/* ----------------------------------------------------------
   CTA MID (INTERMEDIÃRIO)
   ---------------------------------------------------------- */
.cta-mid {
    padding: 80px 0;
    background-color: var(--blue-primary);
    position: relative;
    overflow: hidden;
}

.cta-mid::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.cta-mid__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.cta-mid__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.cta-mid__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
}

.cta-mid__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-mid__mascot {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
}

/* ----------------------------------------------------------
   AREA DE ATENDIMENTO
   ---------------------------------------------------------- */
.area {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.area__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 640px;
    margin: 0 auto 32px;
}

.area__card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.area__card-icon {
    color: var(--blue-primary);
    margin-bottom: 16px;
}

.area__card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 8px;
}

.area__card-text {
    font-size: 1rem;
    color: var(--gray-medium);
}

.area__cta {
    text-align: center;
}

.area__note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-medium);
    margin-bottom: 20px;
    font-style: italic;
}

/* ----------------------------------------------------------
   LOCAL SEO SECTION (NEW)
   ---------------------------------------------------------- */
.local-seo {
    padding: 80px 0;
    background-color: var(--white);
}

.local-seo__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.local-seo__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.local-seo__content .section-title {
    text-align: left;
}

.local-seo__text {
    font-size: 1.05rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

.local-seo__cta {
    margin-top: 8px;
}

.local-seo__cities {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.local-seo__cities-card {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.local-seo__cities-icon {
    color: var(--blue-primary);
}

.local-seo__cities-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--blue-primary);
}

.local-seo__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.local-seo__chip {
    display: inline-block;
    background: var(--white);
    border: 1px solid rgba(23, 77, 115, 0.2);
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--blue-primary);
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.local-seo__chip:hover {
    border-color: var(--orange-primary);
    background: rgba(251, 174, 59, 0.06);
}

.local-seo__cities-note {
    font-size: 0.8125rem;
    color: var(--gray-medium);
    font-style: italic;
}

.local-seo__cities-hint {
    font-size: 0.9375rem;
    color: var(--gray-medium);
    text-align: center;
    line-height: 1.5;
}

.local-seo__cities-btn {
    width: 100%;
    text-align: center;
}

/* ----------------------------------------------------------
   CONTENT SUPPORT (NEW)
   ---------------------------------------------------------- */
.content-support {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.content-support__text {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 1.05rem;
    color: var(--gray-medium);
    line-height: 1.7;
    text-align: center;
}

/* ----------------------------------------------------------
   HOMOLOGATION NOTICE
   ---------------------------------------------------------- */
.testimonials__notice {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #FFF1D6;
    color: #7A4B00;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.35;
}
/* ----------------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------------- */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--gray-light);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card__stars {
    color: var(--orange-primary);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-size: 0.9375rem;
    color: var(--dark);
    line-height: 1.5;
    font-style: italic;
    flex: 1;
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-card__author strong {
    font-size: 0.875rem;
    color: var(--dark);
}

.testimonial-card__author span {
    font-size: 0.8125rem;
    color: var(--gray-medium);
}

/* ----------------------------------------------------------
   FAQ
   ---------------------------------------------------------- */
.faq {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: box-shadow var(--transition-fast);
}

.faq__item[open] {
    box-shadow: var(--shadow-sm);
}

.faq__question {
    padding: 20px 48px 20px 24px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue-primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question::after {
    content: '';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23174D73' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
    transition: transform var(--transition-base);
}

.faq__item[open] .faq__question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq__answer {
    padding: 0 24px 20px;
    font-size: 0.9375rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ----------------------------------------------------------
   CTA FINAL
   ---------------------------------------------------------- */
.cta-final {
    padding: 100px 0;
    background-color: var(--white);
    text-align: center;
}

.cta-final__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-final__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--blue-primary);
    line-height: 1.2;
}

.cta-final__text {
    font-size: 1.125rem;
    color: var(--gray-medium);
    margin-bottom: 8px;
}

.cta-final__phone {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    transition: color var(--transition-fast);
}

.cta-final__phone:hover {
    color: var(--blue-primary);
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.footer {
    background-color: var(--blue-dark);
    color: var(--white);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 48px;
    padding-bottom: 40px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__logo {
    display: block;
    max-width: 180px;
    height: auto;
}

.footer__tagline {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--orange-primary);
}

.footer__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer__phone svg {
    color: #25D366;
}

.footer__phone:hover,
.footer__phone:focus-visible {
    color: var(--white);
}

/* ----------------------------------------------------------
   PRIVACIDADE
   ---------------------------------------------------------- */
.privacy {
    padding: 32px 0;
    background: var(--gray-light);
}

.privacy__inner {
    max-width: 760px;
    text-align: center;
}

.privacy h2 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--blue-primary);
    margin-bottom: 8px;
}

.privacy p {
    font-size: 0.875rem;
    color: var(--gray-medium);
}

.footer__links-title {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.footer__links ul,
.footer__legal ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__links a,
.footer__legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer__links a:hover,
.footer__legal a:hover {
    color: var(--orange-primary);
}

.footer__bottom {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer__bottom a:hover,
.footer__bottom a:focus-visible {
    color: var(--orange-primary);
}

.footer__totop {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange-primary);
    color: var(--dark);
    border: 4px solid var(--blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.footer__totop:hover,
.footer__totop:focus-visible {
    background: var(--orange-strong);
    transform: translate(-50%, -50%) translateY(-2px);
}

/* ----------------------------------------------------------
   WHATSAPP FLOAT & MOBILE BAR
   ---------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 50;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--white);
    padding: 10px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
}

.mobile-bar__btn {
    width: 100%;
}

/* ----------------------------------------------------------
   SCROLL REVEAL SYSTEM
   Uses `animation` (not `transition`) on purpose: cards below
   already use `transition` for their hover lift/shadow, and the
   same CSS property can't carry two independent timings without
   one silently overriding the other. Animation runs in parallel.
   ---------------------------------------------------------- */
@keyframes revealUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes revealLeft {
    from { opacity: 0; transform: translateX(-36px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes revealRight {
    from { opacity: 0; transform: translateX(36px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes revealScale {
    from { opacity: 0; transform: translateY(16px) scale(0.94); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.reveal {
    opacity: 0;
}

.reveal.is-visible {
    animation: revealUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal--left.is-visible { animation-name: revealLeft; }
.reveal--right.is-visible { animation-name: revealRight; }
.reveal--scale.is-visible { animation-name: revealScale; }

/* Staggered children: nth-child animation-delay, capped so long grids don't feel slow */
.reveal-stagger > *:nth-child(1) { animation-delay: 0.04s; }
.reveal-stagger > *:nth-child(2) { animation-delay: 0.09s; }
.reveal-stagger > *:nth-child(3) { animation-delay: 0.14s; }
.reveal-stagger > *:nth-child(4) { animation-delay: 0.19s; }
.reveal-stagger > *:nth-child(5) { animation-delay: 0.24s; }
.reveal-stagger > *:nth-child(6) { animation-delay: 0.29s; }
.reveal-stagger > *:nth-child(n+7) { animation-delay: 0.34s; }

.reveal-d1 { animation-delay: 0.08s; }
.reveal-d2 { animation-delay: 0.16s; }
.reveal-d3 { animation-delay: 0.24s; }
.reveal-d4 { animation-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
    }

    .reveal.is-visible {
        animation: none;
    }
}

/* ----------------------------------------------------------
   RESPONSIVE â€” TABLET (â‰¤1024px)
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__subheadline {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__mascot {
        max-width: 320px;
    }

    .problem__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits__grid,
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .cta-mid__grid {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 100%;
    }

    .local-seo__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .local-seo__content .section-title {
        text-align: center;
    }

    .local-seo__cta {
        text-align: center;
    }

    .cta-mid__mascot {
        width: 200px;
        margin: 0 auto;
    }

    .how__steps {
        flex-direction: column;
        align-items: center;
    }

    .how__connector {
        display: none;
    }

    .how__step {
        flex: 0 0 auto;
        max-width: 320px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer__brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
}

/* ----------------------------------------------------------
   RESPONSIVE â€” MOBILE (â‰¤768px)
   ---------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    /* Mobile Nav */
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 96px 32px 32px;
        gap: 24px;
        transition: right var(--transition-base);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
    }

    .header__nav.active {
        right: 0;
    }

    .header__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
    }

    .header__link {
        font-size: 1.125rem;
    }

    .header__cta {
        width: 100%;
    }

    .header__hamburger {
        display: flex;
    }

    .header__hamburger span {
        background-color: var(--dark);
    }

    /* Sections */
    .hero {
        padding: 48px 0 40px;
    }

    .hero__headline {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .hero__mascot {
        max-width: 240px;
    }

    .problem__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem__card {
        padding: 20px 14px;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .benefits__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .btn {
        white-space: normal;
    }

    .gallery-card,
    .benefit-card,
    .testimonial-card,
    .problem__card,
    .area__card {
        min-width: 0;
    }

    .area__info {
        grid-template-columns: 1fr;
    }

    .cta-mid__title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .cta-mid__mascot {
        width: 160px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__brand {
        grid-column: 1;
    }

    .footer__links ul,
    .footer__legal ul {
        gap: 6px;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .mobile-bar {
        display: block;
    }
}

/* ----------------------------------------------------------
   RESPONSIVE â€” SMALL PHONES (â‰¤430px)
   ---------------------------------------------------------- */
@media (max-width: 430px) {
    .container {
        padding-inline: 16px;
    }

    .hero {
        padding: 36px 0 32px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__trust {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .hero__mascot {
        max-width: 200px;
    }

    .problem__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .problem__card {
        padding: 16px 10px;
    }

    .problem__card p {
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .cta-final {
        padding: 64px 0;
    }
}

/* Hero redesign â€” destaque visual e conversÃ£o */
.hero {
    padding: 52px 0 56px;
    background: radial-gradient(circle at 78% 47%, rgba(218, 237, 248, .9) 0, rgba(218, 237, 248, .55) 19%, transparent 42%), linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
}
.hero__grid { grid-template-columns: 1.08fr .92fr; gap: 52px; }
.hero__content { gap: 20px; }
.hero__headline { font-size: clamp(2rem, 3.6vw, 3.15rem); }
.hero__subheadline { color: #617384; }
.hero__cta-note { display: flex; align-items: center; gap: 8px; color: var(--blue-primary); font-size: .9rem; font-weight: 700; margin-top: -8px; }
.hero__cta-note span { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; background: #dff7e8; color: #169b4a; font-size: .72rem; }
.hero__trust { gap: 8px; font-size: .82rem; color: #4b6274; font-weight: 600; }
.hero__trust span { gap: 6px; padding: 9px 11px; border: 1px solid rgba(19, 83, 123, .11); border-radius: 8px; background: rgba(255, 255, 255, .82); box-shadow: 0 3px 10px rgba(19, 83, 123, .04); }
.hero__trust span::before { content: "âœ“"; color: #17964a; font-weight: 800; }
.hero__visual::before { content: ""; position: absolute; width: min(32vw, 470px); aspect-ratio: 1; border-radius: 44% 56% 52% 48% / 44% 44% 56% 56%; background: linear-gradient(145deg, #e4f3fb 0%, #c9e5f4 100%); border: 10px solid rgba(255, 255, 255, .6); box-shadow: 0 18px 42px rgba(18, 81, 119, .12); }
.hero__mascot-wrapper { padding: 18px 10px 0; }
.hero__mascot { max-width: 450px; }
@media (max-width: 1024px) { .hero__grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 767px) { .hero { padding: 48px 0 40px; } .hero__cta-note { justify-content: center; } .hero__visual::before { width: min(74vw, 340px); } }
@media (max-width: 480px) { .hero { padding: 36px 0 32px; } .hero__trust { flex-direction: column; align-items: stretch; } .hero__trust span { justify-content: center; } .hero__mascot { max-width: 200px; } }

/* MantÃ©m o tÃ­tulo principal em atÃ© quatro linhas no desktop */
@media (min-width: 1025px) {
    .hero__grid { grid-template-columns: 1.18fr .82fr; }
    .hero__headline { font-size: clamp(2rem, 3.35vw, 3rem); }
}

/* Logo mais presente no cabeÃ§alho, sem alterar o menu mobile */
@media (min-width: 768px) {
    .header__logo img { height: 74px; }
}

/* Respiro visual entre o logo e a borda inferior do cabeÃ§alho */
@media (min-width: 768px) {
    .header__logo img { transform: translateY(-6px); }
}
