/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --green: #1B8C5A;
    --green-dark: #156E47;
    --green-light: #e8f5ee;
    --white: #ffffff;
    --off-white: #f9fafb;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #868e96;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --text: #2c2c2c;
    --text-light: #6b7280;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER / NAV ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    letter-spacing: 0.02em;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--green);
}

.nav-cta {
    background: var(--green) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
    background: var(--green-dark) !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
    padding: 140px 0 80px;
    background-image: url('image/biovila-sauipe-litorallotes-litoralnortebahia-linhaverde.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 60, 35, 0.72);
}

.hero-inner {
    display: block;
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6ee7a8;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}

.hero h1 em {
    color: #6ee7a8;
    font-style: italic;
}

.hero-text {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27,140,90,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-outline:hover {
    background: var(--green);
    color: var(--white);
}

.hero .btn-primary {
    background: var(--white);
    color: var(--green);
}

.hero .btn-primary:hover {
    background: var(--green-light);
    color: var(--green-dark);
    box-shadow: 0 6px 20px rgba(255,255,255,0.25);
}

/* ========== SECTION SHARED ========== */
section {
    padding: 80px 0;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 640px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.bg-light {
    background: var(--gray-50);
}

/* ========== ABOUT (VIDEO + TEXTO) ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    aspect-ratio: 16/9;
}

.about-image video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
}

.video-play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: transform 0.2s, background 0.2s, opacity 0.2s;
    z-index: 2;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: #fff;
}

.video-play-btn svg {
    width: 28px;
    height: 28px;
}

.about-image.is-playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

.about-image:hover .video-play-btn {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ========== CHARME / TEXT + IMAGE ========== */
.charme-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.charme-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.charme-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ========== PLANTA ========== */
.planta-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 28px;
}

.planta-wrap img {
    width: 100%;
    max-height: 680px;
    object-fit: cover;
    display: block;
}

.planta-desc {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.planta-legal {
    font-size: 12px;
    color: var(--gray-500);
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== TEMPO REAL / PROGRESS ========== */
.tempo-real {
    background: var(--green);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.tempo-real .section-label {
    color: rgba(255,255,255,0.7);
}

.tempo-real .section-title {
    color: var(--white);
}

.progress-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 40px auto 0;
}

.progress-item {
    text-align: center;
}

.progress-ring {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto;
}

.progress-ring svg {
    width: 110px;
    height: 110px;
    transform: rotate(-90deg);
}

.progress-ring circle {
    fill: none;
    stroke-width: 6;
}

.progress-ring .bg {
    stroke: rgba(255,255,255,0.2);
}

.progress-ring .fill {
    stroke: var(--white);
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease;
}

.progress-ring-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 80px;
    text-align: center;
    pointer-events: none;
}

.progress-value {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.progress-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    opacity: 0.85;
    line-height: 1;
}

/* ========== PRICING CTA ========== */
.pricing-section {
    background-image: url('image/bg.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 80, 50, 0.72);
}

.pricing-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 400px;
}

.pricing-content .section-label {
    color: #6ee7a8;
    font-size: 13px;
    margin-bottom: 16px;
    display: block;
}

.pricing-content .price-tag {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 6px;
}

.pricing-content .price {
    font-family: var(--font-body);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.pricing-content .price-installment {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
}

.pricing-content .btn-primary {
    padding: 11px 26px;
    font-size: 14px;
    background: var(--white);
    color: var(--green);
}

.pricing-content .btn-primary:hover {
    background: var(--green-light);
    color: var(--green-dark);
    box-shadow: 0 6px 20px rgba(255,255,255,0.25);
}

/* ========== LOCALIZAÇÃO ========== */
.local-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 36px;
}

.local-image img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

.local-header {
    text-align: center;
    margin-bottom: 36px;
}

.local-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
}

.local-item {
    display: flex;
    gap: 14px;
    padding: 20px 24px;
    border-right: 1px solid var(--gray-200);
}

.local-item:last-child {
    border-right: none;
}

.local-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    margin-top: 6px;
    flex-shrink: 0;
}

.local-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.local-item strong {
    color: var(--gray-800);
}

/* ========== DEPOIMENTOS ========== */
.testimonials-section {
    padding: 80px 0 100px;
    background: var(--white);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 32px;
    border-radius: var(--radius);
    background: var(--gray-50);
    position: relative;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    min-height: 260px;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--gray-200);
    margin-top: auto;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

.author-loc {
    font-size: 12px;
    color: var(--text-light);
}

.testimonials-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    width: 100%;
    text-align: center;
}

.tpag-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--green);
    transition: background var(--transition), border-color var(--transition);
}

.tpag-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.tpag-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.tpag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    transition: background var(--transition), transform var(--transition);
    cursor: pointer;
}

.tpag-dot.active {
    background: var(--green);
    transform: scale(1.3);
}

/* ========== CARD DE EMPREENDIMENTO (CONTATO) ========== */
.contact-section {
    padding: 80px 48px 60px;
    position: relative;
    background: var(--gray-50);
}

.contact-card-section {
    max-width: 460px;
    margin: 0 auto 48px;
}

.contact-card-label {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 16px;
}

.prop-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.prop-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.prop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.prop-card-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.prop-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.prop-card:hover .prop-card-img img {
    transform: scale(1.06);
}

.prop-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 40%, rgba(0,0,0,0.3) 100%);
}

.prop-card-badge {
    position: absolute;
    top: 14px; left: 14px;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: #ac6908;
    color: var(--white);
    z-index: 2;
}

.prop-card-body {
    padding: 22px 24px 24px;
}

.prop-card-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.prop-card-location {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.prop-card-location svg {
    width: 13px; height: 13px;
    fill: var(--green);
    flex-shrink: 0;
}

.prop-card-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prop-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prop-btn-details {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--gray-100);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    transition: all 0.3s ease;
}

.prop-btn-details:hover {
    background: var(--green);
    color: var(--white);
}

.prop-btn-details svg {
    width: 14px; height: 14px;
    transition: transform 0.3s;
}

.prop-btn-details:hover svg { transform: translateX(3px); }

/* ========== CONTACT WRAPPER ========== */
.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 56px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-dark));
}

.contact-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-wrapper > p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 32px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 28px;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--green);
    transition: all 0.3s ease;
}

.btn-icon:hover {
    transform: translateY(-3px);
    color: var(--green-dark);
}

.btn-phone svg { fill: currentColor; }
.btn-whatsapp svg { fill: currentColor; }

.contact-form-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-form-divider::before,
.contact-form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.contact-form-divider span {
    font-size: 13px;
    color: var(--text-light);
    white-space: nowrap;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--green);
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.contact-creci {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 24px;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

/* ========== FOOTER ========== */
.footer {
    padding: 32px 48px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
}

.footer-left {
    font-size: 13px;
    color: var(--text-light);
}

.footer-left strong {
    color: var(--text);
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12px;
    color: var(--text-light);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--green);
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== LIGHTBOX ========== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-grid,
    .charme-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .charme-image img {
        height: 340px;
    }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }

    /* --- NAV --- */
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    /* --- HERO --- */
    .hero {
        padding: 110px 0 60px;
    }

    /* --- PRICING --- */
    .pricing-inner {
        justify-content: center;
    }

    .pricing-content {
        text-align: center;
    }

    /* --- GALERIA --- */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* --- PLANTA --- */
    .planta-wrap img {
        max-height: 360px;
    }

    /* --- IMAGENS COM ALTURA FIXA --- */
    .charme-image img {
        height: 260px;
    }

    /* --- PROGRESSO --- */
    .tempo-real {
        padding: 36px 0;
    }
    .progress-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 100%;
        margin-top: 24px;
    }
    .progress-ring {
        width: 76px;
        height: 76px;
    }
    .progress-ring svg {
        width: 76px;
        height: 76px;
    }
    .progress-ring-text {
        width: 56px;
    }
    .progress-value {
        font-size: 15px;
    }
    .progress-label {
        font-size: 7px;
    }

    /* --- LOCALIZAÇÃO --- */
    .local-image img {
        height: 280px;
    }

    .local-list {
        grid-template-columns: 1fr;
    }

    .local-item {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .local-item:last-child {
        border-bottom: none;
    }

    /* --- FOOTER --- */
    .footer {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    /* --- DEPOIMENTOS --- */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card:not(:first-child) {
        display: none;
    }

    /* --- CONTATO --- */
    .contact-section {
        padding: 30px 24px;
    }

    .contact-wrapper {
        padding: 36px 24px;
    }

    .contact-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* --- GALERIA --- */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* --- PLANTA --- */
    .planta-wrap img {
        max-height: 240px;
    }

    /* --- IMAGENS --- */
    .charme-image img {
        height: 200px;
    }

    .local-image img {
        height: 200px;
    }

    /* --- PROGRESSO --- */
    .progress-grid {
        gap: 10px;
        margin-top: 20px;
    }

    .progress-ring {
        width: 64px;
        height: 64px;
    }

    .progress-ring svg {
        width: 64px;
        height: 64px;
    }

    .progress-ring-text {
        width: 48px;
    }

    .progress-value {
        font-size: 13px;
    }

    .progress-label {
        font-size: 6px;
    }

    /* --- CONTATO --- */
    .contact-wrapper {
        padding: 28px 20px;
    }
}
