.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,247,245,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--border-card); box-shadow: 0 1px 12px rgba(180,140,140,0.06); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 18px; font-weight: 800; color: var(--heading); text-decoration: none; letter-spacing: -0.02em; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.nav-links a:hover { color: var(--heading); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; font-size: 13px; font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-hover)); border: none; border-radius: var(--radius-input); cursor: pointer; text-decoration: none; box-shadow: var(--shadow-button); transition: all 0.2s ease; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,160,160,0.35); }
.nav-mobile-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--label); }
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 64px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -20%; right: -15%; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(212,160,160,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.hero-content { position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; font-size: 11px; font-weight: 700; color: var(--accent-hover); background: var(--bg-subtle); border: 1px solid var(--border-card); border-radius: 999px; margin-bottom: 20px; letter-spacing: 0.04em; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.hero-title { font-size: clamp(36px, 6vw, 60px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 20px; }
.hero-title .accent { color: var(--accent); font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-style: italic; }
.hero-desc { font-size: clamp(15px, 1.8vw, 18px); color: var(--muted); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; }
.hero-stat-number { font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--heading); letter-spacing: -0.02em; }
.hero-stat-label { font-size: 12px; color: var(--muted); font-weight: 500; }
.hero-image { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 3/4; max-height: 600px; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(45,45,45,0.3) 100%); }
.hero-image-float { position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-radius: var(--radius-section); padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.hero-float-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--green-bg); border: 1px solid var(--green-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-float-text { font-size: 13px; font-weight: 600; color: var(--heading); }
.hero-float-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; font-size: 15px; font-weight: 700; font-family: inherit; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-hover)); border: none; border-radius: var(--radius-input); cursor: pointer; text-decoration: none; box-shadow: var(--shadow-hero); transition: all 0.3s ease; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,160,160,0.35); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; font-size: 15px; font-weight: 600; font-family: inherit; color: var(--label); background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-input); cursor: pointer; text-decoration: none; transition: all 0.2s ease; }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.service-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-card); padding: clamp(24px, 3vw, 32px); box-shadow: var(--shadow-card); transition: all 0.3s ease; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-hover)); opacity: 0; transition: opacity 0.3s ease; }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 48px; height: 48px; border-radius: var(--radius-badge); background: var(--bg-subtle); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.service-price { font-size: 13px; font-weight: 700; color: var(--accent-hover); }
.portfolio-section { background: var(--bg-subtle); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.portfolio-item { position: relative; border-radius: var(--radius-section); overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(45,45,45,0.6) 100%); opacity: 0; transition: opacity 0.3s ease; display: flex; align-items: flex-end; padding: 20px; }
.portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
.portfolio-item-label { font-size: 14px; font-weight: 700; color: #fff; }
.portfolio-item-sub { font-size: 12px; color: rgba(255,255,255,0.8); margin-top: 2px; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.why-card { text-align: center; padding: clamp(24px, 3vw, 36px); }
.why-number { font-size: 48px; font-weight: 800; color: var(--accent-light); line-height: 1; margin-bottom: 16px; font-family: 'Cormorant Garamond', Georgia, serif; }
.why-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.why-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border-card); border-radius: var(--radius-card); padding: clamp(24px, 3vw, 28px); box-shadow: var(--shadow-card); }
.testimonial-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: var(--label); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-subtle); border: 2px solid var(--border-card); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--heading); }
.testimonial-role { font-size: 12px; color: var(--muted); }
.process-section { background: var(--bg-subtle); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; position: relative; }
.process-step { text-align: center; }
.process-number { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-hover)); color: #fff; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 4px 14px rgba(212,160,160,0.3); }
.process-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.process-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.cta-section { text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--accent-light) 0%, var(--bg-subtle) 50%, var(--accent-light) 100%); pointer-events: none; }
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: clamp(28px, 5vw, 44px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.cta-title .serif { font-style: italic; color: var(--accent); }
.cta-desc { font-size: clamp(14px, 1.8vw, 17px); color: var(--muted); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-whatsapp { display: inline-flex; align-items: center; gap: 10px; padding: 18px 40px; font-size: 16px; font-weight: 700; font-family: inherit; color: #fff; background: #25d366; border: none; border-radius: var(--radius-input); cursor: pointer; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.3); transition: all 0.3s ease; }
.cta-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
.cta-note { font-size: 13px; color: var(--placeholder); margin-top: 16px; }
.footer { background: var(--heading); color: rgba(255,255,255,0.6); padding: clamp(48px, 8vw, 80px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand-name { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand-desc { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; transition: all 0.2s ease; }
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
