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

html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(197, 160, 40, 0.2);
    color: var(--color-text);
}

:root {
    /* ─── CONFIGURAÇÕES DE CORES (REFINADAS) ─── */
    --color-primary: #C5A028;
    --color-primary-hover: #A68721;
    --color-bg: #FFFFFF;
    --color-bg-soft: #F5F5F7;
    --color-text: #1D1D1F;
    --color-text-secondary: #86868B;
    --color-whatsapp: #24D366;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);

    /* ─── ESCALA DE ESPAÇAMENTO ─── */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-6: 48px;
    --space-8: 64px;

    /* ─── BORDAS E SOMBRAS ─── */
    --radius-s: 8px;
    --radius-m: 12px;
    --radius-l: 20px;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* ─── UTILITIES ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-3);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-l);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: white;
    box-shadow: 0 10px 20px rgba(36, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(36, 211, 102, 0.3);
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 72px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 36px;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--color-text);
    margin-right: var(--space-3);
    transition: color 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--color-primary);
}

/* ─── HERO SECTION ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('background.jpg') center/cover no-repeat;
    color: var(--color-text);
    overflow: hidden;
    padding-top: 72px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 0;
}

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

.hero-image-wrapper {
    position: absolute;
    right: 2%;
    bottom: 0;
    width: 48%;
    max-width: 680px;
    height: 88%;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-image-wrapper img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.hero-glass {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(32px) saturate(1.4);
    -webkit-backdrop-filter: blur(32px) saturate(1.4);
    padding: var(--space-6) var(--space-4);
    border-radius: var(--radius-l);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    color: var(--color-text);
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.08;
    margin-bottom: var(--space-2);
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

/* ─── SERVICES SECTION ─── */
.section-padding {
    padding: var(--space-8) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-6);
}

.section-title h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    color: var(--color-text);
    margin-bottom: var(--space-1);
}

.section-title p {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-3);
}

.service-card {
    background: white;
    padding: var(--space-3) var(--space-3);
    border-radius: var(--radius-m);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-soft);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(197, 160, 40, 0.1);
    border-color: var(--color-primary);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--color-bg-soft);
    border-radius: var(--radius-s);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    margin-bottom: var(--space-1);
    font-size: 1.15rem;
}

.service-card p {
    color: var(--color-text-secondary);
    font-size: 0.92rem;
    margin-bottom: var(--space-2);
    line-height: 1.55;
}

/* ─── ABOUT SECTION ─── */
.about {
    background-color: var(--color-bg-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-2);
    height: 480px;
}

.about-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-m);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-image-grid .img-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.about-image-grid .img-sub {
    border-radius: var(--radius-m);
}

.about-content h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    margin-bottom: var(--space-3);
}

.about-content p {
    margin-bottom: var(--space-2);
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
}

.about-stats {
    margin-top: var(--space-4);
    display: flex;
    gap: var(--space-4);
    align-items: center;
}

.about-stats .stat h4 {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
}

.about-stats .stat p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

.about-stats .divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* ─── REVIEWS SECTION ─── */
.reviews {
    background-color: var(--color-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-3);
}

.review-card {
    background: var(--color-bg-soft);
    padding: var(--space-3);
    border-radius: var(--radius-m);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2);
}

.reviewer-name {
    font-weight: 600;
}

.stars {
    color: var(--color-primary);
    display: flex;
    gap: 2px;
}

.stars svg,
.stars i svg,
.stars i svg polygon,
.stars i svg path {
    fill: var(--color-primary) !important;
}

.review-text {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    font-style: italic;
    line-height: 1.6;
}

/* ─── INSTAGRAM SECTION ─── */
.instagram {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.insta-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-top: var(--space-2);
    transition: color 0.3s ease;
}

.insta-link:hover,
.insta-link:hover svg {
    color: var(--color-primary) !important;
    stroke: var(--color-primary) !important;
}

/* ─── FINAL CTA SECTION ─── */
.cta-final {
    background: linear-gradient(135deg, #B8941F 0%, var(--color-primary) 40%, #D4B94E 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final h2 {
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: var(--space-2);
    position: relative;
}

.cta-final p {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: var(--space-4);
    position: relative;
}

.cta-final .btn-whatsapp {
    background: white;
    color: var(--color-primary);
    font-weight: 700;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-final .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ─── FOOTER ─── */
footer {
    padding: var(--space-6) 0 var(--space-4);
    background-color: var(--color-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.footer-col h4 {
    margin-bottom: var(--space-2);
    font-size: 1rem;
}

.footer-col p,
.footer-col a {
    color: var(--color-text-secondary);
    font-size: 0.88rem;
    margin-bottom: var(--space-1);
    display: block;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-3);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.footer-link {
    color: inherit;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-primary);
}

.heart {
    display: inline-block;
    color: #ff3b30;
    fill: currentColor;
    width: 14px;
    height: 14px;
    animation: heart-beat 1.5s infinite;
    vertical-align: middle;
    margin: 0 3px;
}

@keyframes heart-beat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.3);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(1);
    }
}

/* ─── FADE-UP SCROLL ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger service cards */
.service-card.fade-up:nth-child(2) {
    transition-delay: 0.08s;
}

.service-card.fade-up:nth-child(3) {
    transition-delay: 0.16s;
}

.service-card.fade-up:nth-child(4) {
    transition-delay: 0.24s;
}

.service-card.fade-up:nth-child(5) {
    transition-delay: 0.32s;
}

.service-card.fade-up:nth-child(6) {
    transition-delay: 0.40s;
}

.service-card.fade-up:nth-child(7) {
    transition-delay: 0.48s;
}

.service-card.fade-up:nth-child(8) {
    transition-delay: 0.56s;
}

/* Stagger review cards */
.review-card.fade-up:nth-child(2) {
    transition-delay: 0.1s;
}

.review-card.fade-up:nth-child(3) {
    transition-delay: 0.2s;
}

.review-card.fade-up:nth-child(4) {
    transition-delay: 0.3s;
}

/* ─── WHATSAPP FLOATING GROUP ─── */
.whatsapp-group {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    align-items: flex-end;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-whatsapp);
    color: white;
    padding: 12px 20px;
    border-radius: 40px;
    box-shadow: 0 10px 25px rgba(36, 211, 102, 0.3);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 35px rgba(36, 211, 102, 0.5);
}

.whatsapp-btn i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.whatsapp-btn span {
    max-width: 200px;
    opacity: 1;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.4s ease, opacity 0.3s ease 0.1s;
}

/* Collapsed State */
.whatsapp-btn.collapsed {
    padding-left: 12px;
    padding-right: 12px;
    gap: 0;
}

.whatsapp-btn.collapsed span {
    max-width: 0;
    opacity: 0;
    transition: max-width 0.4s ease, opacity 0.2s ease;
}

/* Expand on Hover */
.whatsapp-btn.collapsed:hover {
    padding-left: 20px;
    padding-right: 20px;
    gap: 10px;
}

.whatsapp-btn.collapsed:hover span {
    max-width: 200px;
    opacity: 1;
    transition: max-width 0.4s ease, opacity 0.3s ease 0.1s;
}

/* Telephone specific button */
.whatsapp-btn.btn-call {
    background-color: #007AFF;
    box-shadow: 0 10px 25px rgba(0, 122, 255, 0.3);
}

.whatsapp-btn.btn-call:hover {
    box-shadow: 0 15px 35px rgba(0, 122, 255, 0.5);
}

/* ─── 10. LOADING SCREEN ─── */
.loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    text-align: center;
}

.loader-logo img {
    height: 48px;
    margin-bottom: 20px;
    animation: loader-breathe 1.5s ease-in-out infinite;
}

@keyframes loader-breathe {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(0.96);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.loader-bar {
    width: 120px;
    height: 3px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary), #D4B94E);
    border-radius: 3px;
    animation: loader-fill 0.8s ease-out forwards;
}

@keyframes loader-fill {
    to {
        width: 100%;
    }
}

/* ─── 5. BADGE "ABERTO AGORA" ─── */
.badge-open {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-primary);
    background: rgba(197, 160, 40, 0.08);
    border: 1px solid rgba(197, 160, 40, 0.2);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34C759;
    animation: badge-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes badge-pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.5);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 5px rgba(52, 199, 89, 0);
    }
}

/* ─── 13. NAVBAR SCROLL EFFECT ─── */
.navbar {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

/* ─── 11. CUSTOM CURSOR (Desktop) ─── */
@media (pointer: fine) {
    body {
        cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Ccircle cx='10' cy='10' r='4' fill='%23C5A028' opacity='0.7'/%3E%3Ccircle cx='10' cy='10' r='9' fill='none' stroke='%23C5A028' stroke-width='1' opacity='0.3'/%3E%3C/svg%3E") 10 10, auto;
    }

    a,
    button,
    .btn,
    .service-card,
    .whatsapp-btn {
        cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='6' fill='%23C5A028' opacity='0.9'/%3E%3Ccircle cx='12' cy='12' r='11' fill='none' stroke='%23C5A028' stroke-width='1' opacity='0.4'/%3E%3C/svg%3E") 12 12, pointer;
    }
}

/* ─── 14. WAVE SVG SEPARATOR ─── */
.wave-separator {
    line-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.wave-separator svg {
    width: 100%;
    height: 40px;
    display: block;
}

/* ─── 8. REVIEWER AVATAR ─── */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviewer-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2);
}

/* ─── 9. CTA BUTTON PULSE ─── */
@keyframes cta-pulse {
    0% {
        box-shadow: 0 10px 20px rgba(36, 211, 102, 0.2);
    }

    50% {
        box-shadow: 0 10px 30px rgba(36, 211, 102, 0.45), 0 0 0 8px rgba(36, 211, 102, 0.08);
    }

    100% {
        box-shadow: 0 10px 20px rgba(36, 211, 102, 0.2);
    }
}

.btn-whatsapp.pulse {
    animation: cta-pulse 1s ease;
}

/* ─── 3. FOOTER MAP ─── */
.footer-map {
    margin: var(--space-3) 0 var(--space-4);
    border-radius: var(--radius-m);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.footer-map iframe {
    display: block;
}

/* ─── 6. GRADIENT SECTION TRANSITIONS ─── */
.services-section::after,
.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--color-bg-soft));
    pointer-events: none;
}

.about {
    position: relative;
}

/* ════════════════════════════════════════════════════
   ─── MOBILE-FIRST RESPONSIVENESS ───
   ════════════════════════════════════════════════════ */

/* ─── Small phones (up to 480px) ─── */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-2);
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-glass {
        padding: var(--space-3) var(--space-2);
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

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

    .cta-final h2 {
        font-size: 1.5rem;
    }

    .cta-final .btn {
        font-size: 0.85rem;
        padding: 14px 20px;
    }
}

/* ─── Tablets and small screens (up to 768px) ─── */
@media (max-width: 768px) {

    /* --- Navbar --- */
    .navbar {
        height: 64px;
    }

    .navbar .btn-whatsapp {
        display: none;
    }

    .badge-open {
        display: none;
    }

    .logo img {
        height: 32px;
    }

    /* --- Hero Section --- */
    .hero {
        min-height: auto;
        padding-top: 64px;
        padding-bottom: 0;
        display: block;
        /* Break out of flex for natural flow */
    }

    .hero::before {
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0.96) 0%,
                rgba(255, 255, 255, 0.85) 40%,
                rgba(255, 255, 255, 0.3) 80%,
                rgba(255, 255, 255, 0) 100%);
    }

    .hero>.container {
        position: relative;
        z-index: 3;
        padding-top: var(--space-4);
        padding-bottom: var(--space-3);
    }

    .hero-content {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .hero-glass {
        text-align: center;
        padding: var(--space-3) var(--space-2);
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.7);
        max-width: 100%;
        border-radius: var(--radius-m);
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: var(--space-1);
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: var(--space-3);
    }

    .hero-image-wrapper {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        height: 55vh;
        min-height: 320px;
        max-height: 480px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        opacity: 1;
        z-index: 1;
    }

    .hero-image-wrapper img {
        height: 100%;
        width: auto;
        object-fit: contain;
        object-position: bottom center;
    }

    /* --- Spacing --- */
    .section-padding {
        padding: var(--space-6) 0;
    }

    .section-title {
        margin-bottom: var(--space-4);
    }

    /* --- Services --- */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }

    .service-card {
        padding: var(--space-3);
    }

    /* --- About --- */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .about-image-grid {
        height: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: var(--space-1);
    }

    .about-image-grid .img-main {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: 16 / 10;
    }

    .about-image-grid .img-sub {
        aspect-ratio: 4 / 3;
    }

    .about-content h2 {
        font-size: 1.75rem;
        text-align: center;
    }

    .about-content p {
        font-size: 0.95rem;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    /* --- Reviews --- */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }

    .review-card {
        padding: var(--space-3);
    }

    /* --- CTA Final --- */
    .cta-final {
        padding: var(--space-6) var(--space-2);
    }

    /* --- Footer --- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        text-align: center;
    }

    .footer-col img {
        margin-left: auto;
        margin-right: auto;
    }

    /* --- Floating Buttons --- */
    .whatsapp-group {
        bottom: 20px;
        right: 16px;
    }
}

/* ─── Medium screens (tablets landscape, up to 1024px) ─── */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-image-wrapper {
        width: 42%;
    }

    .hero-content {
        max-width: 50%;
    }

    .about-grid {
        gap: var(--space-4);
    }

    .about-image-grid {
        height: 400px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}