/* ============================================
   MONALISA MOLDURAS - PREMIUM LANDING PAGE
   ============================================ */

/* --- Variables --- */
:root {
    --gold: #d4af37;
    --gold-light: #f7ef8a;
    --gold-dark: #ae8625;
    --gold-gradient: linear-gradient(135deg, #ae8625, #f7ef8a, #d2ac47, #edc967, #ae8625);
    --gold-shimmer: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);

    --black: #0a0a0a;
    --dark: #111111;
    --dark-gray: #1a1a1a;
    --gray: #2a2a2a;
    --light-gray: #888;

    --white: #ffffff;
    --cream: #faf8f5;
    --off-white: #f5f5f5;

    --whatsapp: #25d366;
    --instagram: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;

    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Utilities --- */
.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Loader --- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

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

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

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    animation: pulse 1.5s infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: var(--gray);
    border-radius: 3px;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    background: var(--gold-gradient);
    animation: loading 1.5s ease-in-out;
}

@keyframes loading {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 40px;
}

.nav-desktop {
    display: flex;
    gap: 40px;
}

.nav-desktop a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--white);
    position: relative;
}

header.scrolled .nav-desktop a {
    color: var(--dark);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

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

.nav-loja {
    color: var(--gold) !important;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--whatsapp);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
}

.header-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

header.scrolled .mobile-toggle span {
    background: var(--dark);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--dark);
    z-index: 999;
    padding: 100px 30px 50px;
    transition: var(--transition);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu a {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
}

.mobile-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--whatsapp);
    border-radius: var(--radius-full);
    justify-content: center;
    margin-top: 20px;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://i.ibb.co/HfdN5p67/IMG-2122.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    animation: float 25s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-50px, 30px) rotate(5deg);
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.btn-loja {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 20px;
    border: 2px solid #000;
    border-radius: 8px;

    background-color: transparent;
    color: #000;

    text-decoration: none;
    font-weight: 600;

    transition: all 0.3s ease;
}

.btn-loja i {
    color: #000;
}

/* Hover bonito */
.btn-loja:hover {
    background-color: #000;
    color: #fff;
}

.btn-loja:hover i {
    color: #fff;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
    position: relative;
}

.hero-left {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-right {
    flex-shrink: 0;
    align-self: flex-end;
    position: relative;
    z-index: 1;
    pointer-events: none;
    margin-bottom: -1px;
    /* flush with bottom */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 25px;
    text-align: left;
}

.hero-title span {
    display: block;
}

.hero-title em {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    font-weight: 300;
    text-align: left;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* --- Hero Jorge Photo --- */
.hero-jorge {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-jorge-img {
    width: 490px;
    max-height: 85vh;
    object-fit: contain;
    object-position: top;
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.4));
}

@keyframes jorgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 22px 44px;
    font-size: 1rem;
}

.btn-instagram {
    background: var(--instagram);
    color: white;
    box-shadow: 0 10px 30px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 39, 67, 0.4);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--black);
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* --- Hero Scroll Indicator --- */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    margin: 10px auto 0;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        top: 8px;
    }

    50% {
        opacity: 0.3;
        top: 20px;
    }
}

/* --- Trust Bar --- */
.trust-bar {
    background: var(--dark);
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    color: var(--black);
    flex-shrink: 0;
}

.trust-icon svg {
    color: var(--black);
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-number,
.trust-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    display: inline;
}

.trust-plus {
    font-size: 1.2rem;
    color: var(--gold);
}

.trust-decimal {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 700;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.trust-stars {
    display: flex;
    gap: 2px;
}

.trust-stars i {
    font-size: 0.85rem;
    color: #fbbf24;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--light-gray);
}

/* --- Mid CTA (After Trust Bar) --- */
.mid-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--cream), var(--off-white));
    position: relative;
    overflow: hidden;
}

.mid-cta::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.mid-cta-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

.mid-cta-left,
.mid-cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}

.mid-cta-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mid-cta-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-sm);
    font-size: 1.4rem;
    color: var(--black);
    flex-shrink: 0;
}

.mid-cta-content h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.mid-cta-content p {
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.4;
}

.mid-cta-divider {
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    flex-shrink: 0;
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Services Section --- */
.services-section {
    padding: 100px 0;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 20px;
    margin-top: -55px;
    position: relative;
    box-shadow: var(--shadow-gold);
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 0.95rem;
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link:hover {
    gap: 12px;
}

/* --- Materials Section --- */
.materials-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.materials-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    z-index: -1;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.material-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 35px;
    transition: var(--transition);
    position: relative;
}

.material-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.material-card.featured {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.material-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 20px;
}

.material-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.material-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.material-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 12px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Social Proof Section --- */
.social-proof-section {
    padding: 100px 0;
    background: var(--cream);
}

.social-proof-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.social-proof-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.social-proof-text p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.social-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 0.9rem;
}

.stat i {
    color: var(--gold);
}

/* Instagram Mockup */
.social-proof-visual {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 280px;
    background: var(--dark);
    border-radius: 40px;
    padding: 15px;
    box-shadow: var(--shadow-lg);
}

.phone-notch {
    width: 80px;
    height: 25px;
    background: var(--black);
    border-radius: 20px;
    margin: 0 auto 15px;
}

.instagram-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--black);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.instagram-header .verified {
    color: #3897f0;
    font-size: 0.9rem;
}

.instagram-stats {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    background: var(--black);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}

.instagram-stats div {
    text-align: center;
    color: white;
}

.instagram-stats strong {
    display: block;
    font-size: 1.2rem;
}

.instagram-stats span {
    font-size: 0.75rem;
    color: var(--light-gray);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.grid-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--gray), var(--dark-gray));
    border-radius: 4px;
}

/* --- Location Section --- */
.location-section {
    padding: 100px 0;
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.location-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-info-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 35px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 30px;
}

.location-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.location-info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--black);
    flex-shrink: 0;
}

.location-info-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.location-info-item p {
    font-size: 0.88rem;
    color: var(--light-gray);
    line-height: 1.5;
    margin: 0;
}

.location-cta {
    align-self: flex-start;
}

.location-map {
    display: flex;
    align-items: stretch;
}

.map-wrapper {
    width: 100%;
    min-height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

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

/* --- Final CTA --- */
.final-cta {
    display: flex;
    flex-wrap: wrap;
}

.cta-left,
.cta-right {
    flex: 1;
    min-width: 300px;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-left {
    background: var(--dark);
}

.cta-right {
    background: var(--cream);
}

.cta-content {
    max-width: 400px;
    text-align: center;
}

.cta-left .cta-content h2,
.cta-left .cta-content p {
    color: var(--white);
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1rem;
    color: var(--light-gray);
    margin-bottom: 30px;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--light-gray);
}

.cta-left .cta-note {
    color: rgba(255, 255, 255, 0.6);
}

.cta-note i {
    color: var(--gold);
}

/* --- Footer --- */
footer {
    background: var(--black);
    padding: 80px 0 30px;
    color: var(--light-gray);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0.8);
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-icon {
    width: 65px;
    height: 65px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
}

.whatsapp-pulse {
    position: absolute;
    width: 65px;
    height: 65px;
    background: var(--whatsapp);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
    z-index: 1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: white;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* --- Animations --- */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {

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

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

    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .hero-left {
        max-width: 100%;
        flex: 1;
        min-width: 0;
    }

    .hero-right {
        align-self: flex-end;
        flex-shrink: 0;
    }

    .hero-jorge-img {
        width: 300px;
    }

    .mid-cta-inner {
        flex-direction: column;
        padding: 40px 30px;
    }

    .mid-cta-divider {
        width: 80%;
        height: 1px;
    }

    .mid-cta-left,
    .mid-cta-right {
        align-items: center;
        text-align: center;
    }

    .mid-cta-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .nav-desktop,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hero: texto esquerda, imagem direita, botões abaixo */
    .hero-content {
        display: grid;
        grid-template-columns: 1fr 160px;
        gap: 0 10px;
        align-items: end;
        overflow: hidden;
        max-width: 100%;
    }

    .hero-left {
        display: contents;
    }

    .hero-badge,
    .hero-title,
    .hero-subtitle {
        grid-column: 1 / 2;
    }

    .hero-badge {
        align-self: end;
    }

    .hero-right {
        display: block;
        grid-column: 2 / 3;
        grid-row: 1 / 4;
        align-self: end;
        width: 160px;
        overflow: hidden;
    }

    .hero-jorge-img {
        width: 160px;
        mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    }

    .hero-title {
        font-size: 1.5rem;
        text-align: left;
    }

    .hero-subtitle {
        text-align: left;
        font-size: 0.85rem;
        margin-bottom: 16px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        margin-bottom: 12px;
    }

    .hero-ctas {
        grid-column: 1 / -1;
        flex-direction: column;
        width: 100%;
        padding: 0;
        justify-content: flex-start;
        margin-top: 10px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

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

    .social-proof-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .social-proof-visual {
        order: -1;
    }

    .map-wrapper {
        min-height: 300px;
    }

    .map-wrapper iframe {
        min-height: 300px;
    }

    .cta-left,
    .cta-right {
        padding: 60px 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .location-cta {
        align-self: stretch;
    }
}

@media (max-width: 480px) {

    .hero-content {
        grid-template-columns: 1fr 140px;
        gap: 0 8px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-right {
        width: 140px;
    }

    .hero-jorge-img {
        width: 140px;
    }

    .hero-subtitle {
        font-size: 0.78rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .social-stats {
        flex-direction: column;
        gap: 15px;
    }

    .location-info-card {
        padding: 25px;
    }
}