@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg: #FDFAF7;
    --bg-alt: #F8F3EE;
    --bg-warm: #FDF5EE;
    --bg-dark: #1A1614;
    --bg-rose: #FFF5F3;

    --text: #2A1F1A;
    --text-light: #7A6E65;
    --text-muted: #B0A69D;

    --vinho: #8B3A43;
    --vinho-escuro: #5E262E;
    --vinho-claro: #C47A84;
    --rose: #D4919A;
    --rose-light: #F2D0D4;
    --gold: #C9A96E;
    --gold-light: #E8D5A8;
    --terracotta: #C8946F;
    --sage: #A8B5A0;
    --dusty-pink: #D4A5A5;
    --champagne: #F7E7CE;

    --border: #EDE6DF;
    --border-light: #F5F0EB;
    --white: #ffffff;

    --shadow-sm: 0 2px 8px rgba(42,31,26,0.04);
    --shadow-md: 0 8px 30px rgba(42,31,26,0.06);
    --shadow-lg: 0 20px 60px rgba(42,31,26,0.08);
    --shadow-glow: 0 0 40px rgba(201,169,110,0.15);

    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --radius-full: 9999px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
::selection { background: rgba(212,145,154,0.3); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--rose-light); border-radius: 10px; }

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideLeft {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes drawLine {
    from { width: 0; }
    to { width: 60px; }
}

.anim { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
.anim.visible { opacity: 1; transform: none; }
.anim-up { transform: translateY(40px); }
.anim-left { transform: translateX(-40px); }
.anim-right { transform: translateX(40px); }
.anim-scale { transform: scale(0.95); }
.anim-delay-1 { transition-delay: 100ms; }
.anim-delay-2 { transition-delay: 200ms; }
.anim-delay-3 { transition-delay: 300ms; }
.anim-delay-4 { transition-delay: 400ms; }

.float { animation: float 6s ease-in-out infinite; }
.float-slow { animation: float 8s ease-in-out infinite; }
.shimmer-text {
    background: linear-gradient(90deg, var(--text) 0%, var(--gold) 50%, var(--text) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 4s linear infinite;
}

/* ═══════════════════════════════
   DECORATIVE ELEMENTS
═══════════════════════════════ */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.deco-circle-rose {
    background: radial-gradient(circle, rgba(212,145,154,0.15) 0%, transparent 70%);
}
.deco-circle-gold {
    background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
}
.deco-circle-sage {
    background: radial-gradient(circle, rgba(168,181,160,0.12) 0%, transparent 70%);
}
.deco-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.deco-line-center {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
}
.deco-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}

/* Color palette swatches */
.color-palette {
    display: flex;
    gap: 4px;
    align-items: center;
}
.color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.color-swatch:hover { transform: scale(1.3); }

.color-strip {
    display: flex;
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
    width: 120px;
}
.color-strip span {
    flex: 1;
    transition: flex 0.3s;
}
.color-strip:hover span:nth-child(odd) { flex: 1.5; }

/* Marquee ticker */
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.marquee-track {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-light);
    letter-spacing: 0.05em;
}
.marquee-item .deco-dot { margin: 0; }

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(253,250,247,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(237,230,223,0.5);
    padding: 1rem 0;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}
.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-logo { display: flex; flex-direction: column; transition: opacity 0.3s; }
.navbar-logo:hover { opacity: 0.7; }
.navbar-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text);
    font-weight: 500;
}
.navbar-logo-sub {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    font-weight: 600;
}
.navbar-links {
    display: none;
    align-items: center;
    gap: 2rem;
}
.navbar-links a {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
    transition: color 0.3s;
    position: relative;
}
.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--vinho);
    transition: width 0.3s;
}
.navbar-links a:hover { color: var(--vinho); }
.navbar-links a:hover::after { width: 100%; }

.navbar-cta {
    padding: 0.6rem 1.5rem;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--radius-full);
    transition: all 0.3s;
}

/* Mobile menu */
.navbar-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}
.navbar-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s;
}
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

@media (max-width: 767px) {
    .navbar-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg);
        padding: 6rem 2rem 2rem;
        gap: 0;
        box-shadow: -4px 0 24px rgba(0,0,0,0.1);
        transition: right 0.35s ease;
        z-index: 100;
    }
    .navbar-links.open { right: 0; }
    .navbar-links a {
        padding: 1rem 0;
        font-size: 0.75rem;
        border-bottom: 1px solid var(--border);
    }
    .navbar-cta { display: none; }
}
@media (min-width: 768px) {
    .navbar-links { display: flex; }
    .navbar-toggle { display: none; }
}

/* ═══════════════════════════════
   BUTTONS
═══════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn:hover::before { width: 300px; height: 300px; }

.btn-primary {
    background: var(--text);
    color: var(--white);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-vinho {
    background: linear-gradient(135deg, var(--vinho), var(--vinho-escuro));
    color: var(--white);
}
.btn-vinho:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(139,58,67,0.25); }

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--vinho); color: var(--vinho); transform: translateY(-3px); }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #B8943F);
    color: var(--white);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,169,110,0.3); }

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}
.btn-whatsapp:hover { background: #1EBE5D; transform: translateY(-3px); }

.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.7rem; }

/* ═══════════════════════════════
   SECTIONS
═══════════════════════════════ */
.section { padding: 7rem 0; position: relative; }
.section-alt { padding: 7rem 0; background: var(--bg-alt); position: relative; }
.section-warm { padding: 7rem 0; background: var(--bg-warm); position: relative; }
.section-rose { padding: 7rem 0; background: var(--bg-rose); position: relative; }
.section-dark { padding: 7rem 0; background: var(--bg-dark); color: var(--white); position: relative; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--vinho);
    margin-bottom: 1rem;
    display: block;
}
.section-dark .section-label { color: var(--rose); }

.section-title {
    font-size: 2.75rem;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.section-dark .section-title { color: var(--white); }

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 300;
}

@media (min-width: 768px) {
    .section-title { font-size: 3.5rem; }
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    gap: 3rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}
@media (min-width: 768px) {
    .hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.hero-text { max-width: 580px; }
.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.hero-text h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--vinho);
}
.hero-text h1 strong { font-weight: 600; }
.hero-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
}
@media (min-width: 768px) {
    .hero-text h1 { font-size: 4.5rem; }
}
.hero-media { position: relative; }
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg) 30%, transparent 70%);
}

/* ═══════════════════════════════
   CARDS
═══════════════════════════════ */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--rose-light), var(--gold-light), var(--rose-light));
    opacity: 0;
    transition: opacity 0.4s;
}
.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    border-color: var(--rose-light);
}
.card:hover::before { opacity: 1; }

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}
.card p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.8;
}
.card-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--vinho);
    border: 1px solid var(--border);
    transition: all 0.4s;
}
.card:hover .card-icon {
    background: var(--vinho);
    color: var(--white);
    border-color: var(--vinho);
    transform: scale(1.1);
}

.card-featured {
    background: var(--bg-dark);
    color: var(--white);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}
.card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--vinho), var(--gold));
}
.card-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.card-featured h3 { color: var(--white); }
.card-featured .card-subtitle { color: rgba(255,255,255,0.5); }
.card-featured .card-icon {
    background: rgba(255,255,255,0.1);
    color: var(--gold);
    border-color: rgba(255,255,255,0.1);
}

.card .btn,
.card-featured .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 2rem;
}

/* ═══════════════════════════════
   PRICING
═══════════════════════════════ */
.price-installment {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.25rem;
}
.price-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--vinho);
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}
.price-total {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
}
.card-featured .price-value { color: var(--gold); }
.card-featured .price-installment { color: rgba(255,255,255,0.5); }
.card-featured .price-total { color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════
   GRIDS
═══════════════════════════════ */
.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 2rem; }
.grid-4 { display: grid; gap: 1.5rem; }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════
   ABOUT LAYOUT
═══════════════════════════════ */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) {
    .about-grid { grid-template-columns: 5fr 7fr; gap: 5rem; }
}
.about-photo { position: relative; }
.about-photo img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.about-photo::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid var(--gold-light);
    border-radius: var(--radius-xl);
    pointer-events: none;
}
.about-text p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

/* ═══════════════════════════════
   GALLERY
═══════════════════════════════ */
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.5s;
    position: relative;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,22,20,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.gallery-item img {
    width: 100%;
    height: 22rem;
    object-fit: cover;
    transition: transform 0.7s;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ═══════════════════════════════
   PORTFOLIO
═══════════════════════════════ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1023px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.5s;
}
.portfolio-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.portfolio-item img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.7s;
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item-info {
    padding: 1.25rem;
}
.portfolio-item-service {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--vinho);
    margin-bottom: 0.25rem;
}
.portfolio-item-caption {
    font-size: 0.8125rem;
    color: var(--text-light);
}
.portfolio-empty {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

/* ═══════════════════════════════
   FEATURE LIST
═══════════════════════════════ */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    color: var(--text-light);
}
.feature-list li::before {
    content: "✓";
    color: var(--vinho);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.card-featured .feature-list li { color: rgba(255,255,255,0.7); }
.card-featured .feature-list li::before { color: var(--gold); }

/* ═══════════════════════════════
   BADGE
═══════════════════════════════ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
}
.badge-featured {
    position: absolute;
    top: 0;
    right: 1.5rem;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--gold), #B8943F);
    color: var(--white);
    padding: 0.4rem 1.25rem;
    border-radius: var(--radius-full);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: none;
    box-shadow: 0 4px 15px rgba(201,169,110,0.3);
}

/* ═══════════════════════════════
   QUOTE / TESTIMONIAL
═══════════════════════════════ */
.quote {
    padding: 2rem 2.5rem;
    border-left: 2px solid var(--gold);
    background: var(--bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--text);
    font-size: 1.125rem;
    line-height: 1.8;
}
.testimonial {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
}
.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.testimonial-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    font-weight: 600;
}

/* ═══════════════════════════════
   STATS
═══════════════════════════════ */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--vinho);
    font-weight: 300;
    line-height: 1;
}
.stat-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-top: 0.75rem;
    font-weight: 600;
}

/* ═══════════════════════════════
   PROCESS STEPS
═══════════════════════════════ */
.process-steps {
    display: grid;
    gap: 2rem;
    counter-reset: step;
}
@media (min-width: 768px) {
    .process-steps { grid-template-columns: repeat(4, 1fr); }
}
.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    counter-increment: step;
    position: relative;
}
.process-step::before {
    content: counter(step, decimal-leading-zero);
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--rose-light);
    font-weight: 300;
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}
.process-step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.process-step p {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ═══════════════════════════════
   CTA SECTION
═══════════════════════════════ */
/* SERVICE BLOCKS */
.service-block {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s, box-shadow 0.4s;
}
.service-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.service-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.service-block:hover img { transform: scale(1.05); }
.service-block-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,22,20,0.85) 0%, rgba(26,22,20,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #fff;
}
.service-block-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.service-block-overlay h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    color: #fff;
}
.service-block-overlay p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1023px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 639px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.section-rose + .footer,
.section + .footer,
.section-alt + .footer { margin-top: 0; }
.cta-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 2rem;
}
.cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.cta-section p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* ═══════════════════════════════
   VIDEO
═══════════════════════════════ */
.video-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    position: relative;
}
.video-frame video { width: 100%; display: block; }
.video-frame::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: calc(var(--radius-xl) - 4px);
    pointer-events: none;
}

/* ═══════════════════════════════
   DIVIDER
═══════════════════════════════ */
.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 1.5rem 0;
}
.divider-center {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer {
    padding: 5rem 0;
    background: var(--bg-dark);
    color: #EDE8E3;
    text-align: center;
}
.footer h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    letter-spacing: 0.15em;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.5rem;
}
.footer-tagline {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    margin-bottom: 2.5rem;
}
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
    list-style: none;
    padding: 0;
}
.footer-links a {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    line-height: 1.8;
}
.footer .deco-line-center { background: rgba(255,255,255,0.15); }

/* ═══════════════════════════════
   COLOR ANALYSIS PALETTE BAR
═══════════════════════════════ */
.palette-bar {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0;
}
.palette-season {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.palette-season-colors {
    display: flex;
    gap: 3px;
}
.palette-season-colors span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--white);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.palette-season-colors span:hover { transform: scale(1.4); }
.palette-season-label {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    font-weight: 600;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 767px) {
    .section, .section-alt, .section-warm, .section-rose, .section-dark { padding: 4rem 0; }
    .hero { min-height: auto; padding: 7rem 0 4rem; }
    .hero-text h1 { font-size: 2.75rem; }
    .section-title { font-size: 2.25rem; }
    .card, .card-featured { padding: 1.75rem; }
    .stats-row { gap: 2.5rem; }
    .stat-number { font-size: 2.5rem; }
    .hide-mobile { display: none; }
    .testimonial-text { font-size: 1.25rem; }
}

/* ═══════════════════════════════
   PRICE LOCK & MODAL
═══════════════════════════════ */
.price-locked { display: none; }
.price-locked.revealed { display: block; }

.price-unlock-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--gold), #B8943F);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}
.price-unlock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,169,110,0.3);
}
.price-unlock-btn svg { width: 16px; height: 16px; }

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,22,20,0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 440px;
    width: 100%;
    padding: 3rem 2.5rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}
.modal-overlay.active .modal-box {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    width: 32px;
    height: 32px;
    border: none;
    background: var(--bg-alt);
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.modal-close:hover { background: var(--border); color: var(--text); }
.modal-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 400;
}
.modal-box .modal-subtitle {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.modal-field {
    margin-bottom: 1.25rem;
}
.modal-field label {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.modal-field input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color 0.2s;
}
.modal-field input:focus { border-color: var(--vinho); }
.modal-field input::placeholder { color: var(--text-muted); }
.modal-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--vinho), var(--vinho-escuro));
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
}
.modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139,58,67,0.25);
}
.modal-error {
    font-size: 0.75rem;
    color: var(--vinho);
    margin-top: 0.5rem;
    display: none;
}

/* ═══════════════════════════════
   SHARED JS SCROLL ANIMATION INIT
═══════════════════════════════ */
/* Add this script to each page:
<script>
document.addEventListener('DOMContentLoaded', () => {
    // Scroll animations
    const observer = new IntersectionObserver((entries) => {
        entries.forEach(e => { if (e.isIntersecting) { e.target.classList.add('visible'); observer.unobserve(e.target); }});
    }, { threshold: 0.1, rootMargin: '0px 0px -50px 0px' });
    document.querySelectorAll('.anim').forEach(el => observer.observe(el));

    // Navbar scroll
    const nav = document.querySelector('.navbar');
    if (nav) {
        window.addEventListener('scroll', () => {
            nav.classList.toggle('scrolled', window.scrollY > 60);
        });
    }
});
</script>
*/
