﻿:root { --cream: #FAF6EE; --cream-2: #F1E9D8; --ink: #2A241D; --ink-soft: #5B5347; --gold: #B4863E; --gold-deep: #8C6A2E; --gold-light: #E6C77E; --panel: #26211A; --panel-2: #332C22; --line: rgba(42, 36, 29, 0.12); --white: #FFFFFF; --radius: 18px; --shadow: 0 20px 50px -20px rgba(42, 36, 29, 0.35); } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { background: var(--cream); color: var(--ink); font-family: 'Manrope', sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; } img { display: block; max-width: 100%; } a { color: inherit; text-decoration: none; } ul { list-style: none; } .wrap { max-width: 1320px; margin: 0 auto; padding: 0 40px; } h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 500; letter-spacing: -0.01em; color: var(--ink); } .eyebrow { font-family: 'Manrope', sans-serif; font-size: 12.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); display: flex; align-items: center; gap: 10px; } .eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); display: inline-block; } .btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px; border-radius: 999px; font-weight: 700; font-size: 14.5px; letter-spacing: .01em; cursor: pointer; border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; white-space: nowrap; } .btn-gold { background: linear-gradient(180deg, var(--gold-light), var(--gold)); color: #241C0E; box-shadow: 0 12px 24px -10px rgba(140, 106, 46, 0.65); } .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(140, 106, 46, 0.75); } .btn-outline { background: transparent; border-color: rgba(42, 36, 29, 0.25); color: var(--ink); } .btn-outline:hover { border-color: var(--ink); background: rgba(42, 36, 29, 0.04); } .btn-light { background: var(--cream); color: var(--ink); } .btn-light:hover { transform: translateY(-2px); } .wa-icon { width: 16px; height: 16px; flex-shrink: 0; } /* ---------- NAV ---------- */ header.nav { position: fixed; top: 0; width: 100%; z-index: 1000; background: linear-gradient(180deg, transparent 0%, rgba(250, 246, 238, 0.05) 45%, rgba(245, 241, 233, 0.85) 100%); backdrop-filter: blur(16px) saturate(1.1); -webkit-backdrop-filter: blur(16px) saturate(1.1); border-bottom: none; box-shadow: 0 10px 30px rgba(34, 28, 22, 0.04), inset 0 -1px 0 rgba(180, 134, 62, 0.15); transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1), transform 0.5s cubic-bezier(0.23, 1, 0.32, 1); opacity: 0; transform: translateY(-100%); pointer-events: none; } header.nav.scrolled { opacity: 1; transform: translateY(0); pointer-events: auto; } .nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 40px; max-width: 1320px; margin: 0 auto; } .brand { display: flex; align-items: center; gap: 12px; } .brand img { height: 40px; width: auto; } .brand-name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; line-height: 1.05; } .brand-name::after { content: ""; display: block; width: 44px; height: 2px; margin-top: 6px; background: linear-gradient(90deg, var(--gold-light), var(--gold-deep)); border-radius: 2px; opacity: 0.95; } .brand-name small { display: block; font-family: 'Manrope', sans-serif; font-size: 9.5px; font-weight: 700; letter-spacing: .18em; color: var(--gold-deep); margin-top: 2px; } nav.links { display: flex; gap: 36px; align-items: center; } nav.links a { font-size: 14px; font-weight: 700; color: var(--ink-soft); position: relative; padding: 8px 12px; transition: color 0.3s ease, background 0.3s ease; letter-spacing: 0.02em; border-radius: 8px; } nav.links a:hover { color: var(--gold-deep); background: rgba(180, 134, 62, 0.06); } nav.links a::after { content: ""; position: absolute; left: 50%; bottom: 2px; height: 2px; width: 0; background: linear-gradient(90deg, transparent, var(--gold-deep), transparent); transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1), left 0.4s cubic-bezier(0.23, 1, 0.32, 1); opacity: 0; } nav.links a:hover::after { width: 60%; left: 20%; opacity: 1; } .nav-cta { display: flex; align-items: center; gap: 22px; } /* --- Menu Button Premium --- */ .menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 0; position: relative; width: 44px; height: 44px; align-items: center; justify-content: center; transition: all 0.3s ease; border-radius: 12px; flex-shrink: 0; } .menu-btn:hover { background: rgba(180, 134, 62, 0.08); } /* Ícone menu mobile — 3 barras assimétricas + ponto decorativo */ .menu-btn span { display: block !important; position: absolute; left: 50%; transform-origin: center; background: var(--ink) !important; border-radius: 3px; transition: all 0.42s cubic-bezier(0.23, 1, 0.32, 1); opacity: 1 !important; visibility: visible !important; flex-shrink: 0; } /* Três barras com comprimentos escalonados — design assimétrico sofisticado */ .menu-btn span:nth-child(1) { width: 22px !important; height: 2px !important; top: 13px; margin-left: -13px; transition: all 0.42s cubic-bezier(0.23, 1, 0.32, 1) 0.06s; } .menu-btn span:nth-child(2) { width: 16px !important; height: 2px !important; top: 20px; margin-left: -13px; transition: all 0.42s cubic-bezier(0.23, 1, 0.32, 1) 0.02s; } .menu-btn span:nth-child(3) { display: block !important; width: 10px !important; height: 2px !important; top: 27px; margin-left: -13px; transition: all 0.42s cubic-bezier(0.23, 1, 0.32, 1) 0s; } /* Ponto dourado decorativo no canto do botão */ .menu-btn::after { content: ""; position: absolute; right: 7px; top: 11px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.9; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); box-shadow: 0 0 6px rgba(180, 134, 62, 0.3); } /* Estado ativo: X elegante com rotação escalonada */ .menu-btn.active span:nth-child(1) { width: 20px !important; top: 50%; margin-left: -10px; transform: translateY(-50%) rotate(45deg); background: var(--gold) !important; transition-delay: 0s; } .menu-btn.active span:nth-child(2) { width: 0px !important; opacity: 0 !important; margin-left: -10px; transition-delay: 0s; } .menu-btn.active span:nth-child(3) { width: 20px !important; top: 50%; margin-left: -10px; transform: translateY(-50%) rotate(-45deg); background: var(--gold) !important; transition-delay: 0.04s; } /* Ponto desaparece no estado ativo */ .menu-btn.active::after { opacity: 0; transform: scale(0); } /* --- Mobile Menu Overlay Premium --- */ .mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26, 21, 16, 0.97); backdrop-filter: blur(24px) saturate(1.5); -webkit-backdrop-filter: blur(24px) saturate(1.5); z-index: 999; opacity: 0; visibility: hidden; transition: opacity 0.36s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.36s cubic-bezier(0.23, 1, 0.32, 1); } .mobile-menu.active { opacity: 1; visibility: visible; } .mobile-menu-content { display: flex; flex-direction: column; justify-content: center; height: 100%; padding: env(safe-area-inset-top, 0px) 36px 48px; padding-top: max(80px, env(safe-area-inset-top, 80px)); overflow-y: auto; } /* Cabeçalho interno do menu mobile */ .mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; } .mobile-menu-brand { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 500; color: rgba(250, 246, 238, 0.55); letter-spacing: 0.01em; } /* Separador ornamental */ .mobile-menu-sep { width: 32px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin: 0 0 32px; opacity: 0.6; } .mobile-menu nav { display: flex; flex-direction: column; gap: 0; width: 100%; flex: 1; justify-content: center; } .mobile-menu nav a { font-size: clamp(28px, 6.5vw, 38px); font-family: 'Fraunces', serif; font-weight: 400; color: rgba(250, 246, 238, 0.88); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(250, 246, 238, 0.06); transition: color 0.25s ease; position: relative; letter-spacing: -0.015em; line-height: 1; transform: translateY(14px); opacity: 0; } /* Número sequencial dourado antes de cada link */ .mobile-menu nav a::before { content: counter(mobile-nav-counter, decimal-leading-zero); counter-increment: mobile-nav-counter; font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; color: var(--gold); opacity: 0.7; margin-right: 16px; flex-shrink: 0; transition: opacity 0.25s ease; } .mobile-menu nav { counter-reset: mobile-nav-counter; } .mobile-menu.active nav a { transform: translateY(0); opacity: 1; } /* Animação escalonada nos links — slide vertical suave */ .mobile-menu.active nav a:nth-child(1) { transition: color 0.25s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 0.5s ease 0.1s; } .mobile-menu.active nav a:nth-child(2) { transition: color 0.25s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.17s, opacity 0.5s ease 0.17s; } .mobile-menu.active nav a:nth-child(3) { transition: color 0.25s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.24s, opacity 0.5s ease 0.24s; } .mobile-menu.active nav a:nth-child(4) { transition: color 0.25s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.31s, opacity 0.5s ease 0.31s; } /* Seta indicadora elegante */ .mobile-menu nav a::after { content: ""; width: 20px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); transition: width 0.3s ease, opacity 0.3s ease; flex-shrink: 0; opacity: 0; } .mobile-menu nav a:hover { color: var(--gold-light); } .mobile-menu nav a:hover::before { opacity: 1; } .mobile-menu nav a:hover::after { opacity: 0.8; width: 40px; } /* Rodapé do menu mobile */ .mobile-menu-footer { padding-top: 40px; transform: translateY(12px); opacity: 0; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.38s, opacity 0.4s ease 0.38s; } .mobile-menu.active .mobile-menu-footer { transform: translateY(0); opacity: 1; } .mobile-menu .btn { width: 100%; justify-content: center; font-size: 15px; padding: 16px 24px; } .mobile-menu-meta { margin-top: 20px; font-size: 11px; color: rgba(250, 246, 238, 0.3); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; text-align: center; } /* Detalhe ornamental no fundo do menu — duplo radial */ .mobile-menu::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 180px; background: radial-gradient(ellipse at 70% 0%, rgba(180, 134, 62, 0.08), transparent 60%); pointer-events: none; } .mobile-menu::after { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 220px; background: radial-gradient(ellipse at 30% 100%, rgba(180, 134, 62, 0.14), transparent 65%); pointer-events: none; } /* ---------- HERO ---------- */ .hero { position: relative; padding: 0 0 0; overflow: hidden; background: radial-gradient(1100px 600px at 78% 10%, rgba(180, 134, 62, 0.10), transparent 60%), var(--cream); } .hero-inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; position: relative; min-height: 620px; } .hero-copy { position: relative; z-index: 3; max-width: 520px; padding: 20px 0 70px 40px; } .hero-copy::before { content: ""; position: absolute; left: 18px; top: 8%; bottom: 12%; width: 3px; border-radius: 4px; background: linear-gradient(180deg, rgba(180, 134, 62, 0.98), rgba(180, 134, 62, 0.18)); box-shadow: 0 6px 18px rgba(180, 134, 62, 0.06); opacity: 0.98; } .hero-copy h1 { font-size: clamp(38px, 4.6vw, 56px); line-height: 1.06; margin: 18px 0 20px; font-weight: 700; letter-spacing: -0.01em; } .hero-copy h1 em { font-style: italic; color: var(--gold-deep); background: linear-gradient(180deg, transparent 62%, rgba(180, 134, 62, 0.28) 62%); } .hero-copy p.lead { font-size: 17.5px; color: var(--ink); font-weight: 500; max-width: 460px; margin-bottom: 34px; text-rendering: optimizeLegibility; } .hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; } .hero-note { font-size: 11.5px; color: var(--ink-soft); font-weight: 600; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; line-height: 1.4; letter-spacing: 0.02em; } .hero-note svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; } .hero-meta { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; color: var(--ink-soft); font-size: 13px; font-weight: 600; letter-spacing: 0.02em; } .hero-meta .meta-item { color: var(--ink); font-weight: 700; } .hero-meta .meta-sep { color: rgba(42, 36, 29, 0.28); font-weight: 700; } .hero-highlights { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; max-width: 560px; margin-top: 24px; } .hero-highlight { padding-top: 10px; border-top: 1px solid rgba(42, 36, 29, 0.12); display: flex; gap: 10px; align-items: flex-start; } .hero-highlight svg { width: 16px; height: 16px; color: var(--gold-deep); margin-top: 2px; flex-shrink: 0; } .hero-highlight strong { display: block; font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 2px; } .hero-highlight span { font-size: 13px; color: var(--ink-soft); line-height: 1.4; display: block; } .badge-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; max-width: 1320px; padding: 0 0 46px; } .badge-item { display: flex; align-items: flex-start; gap: 12px; } .badge-item svg { width: 26px; height: 26px; color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; } .badge-item .t { font-size: 13.5px; font-weight: 700; color: var(--ink); } .badge-item .d { font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; line-height: 1.4; } .hero-media { position: absolute; top: -64px; bottom: 0; left: 34%; right: -10vw; z-index: 1; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .06) 8%, rgba(0, 0, 0, .35) 18%, rgba(0, 0, 0, .78) 30%, #000 46%, #000 100%); mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .06) 8%, rgba(0, 0, 0, .35) 18%, rgba(0, 0, 0, .78) 30%, #000 46%, #000 100%); } .hero-media .frame { position: relative; width: 100%; height: 100%; } .hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: left center; } .hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(38, 33, 26, 0.28), transparent 34%); pointer-events: none; } /* --- Premium Glassmorphic Side Decoration --- */ @keyframes slowFloat { 0% { transform: translateY(0); } 50% { transform: translateY(-5px); } 100% { transform: translateY(0); } } @keyframes pulseGlow { 0% { opacity: 0.8; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } 100% { opacity: 0.8; transform: scale(1); } } @keyframes floatRings { 0% { transform: translate(-50%, -50%) translateY(0); } 50% { transform: translate(-50%, -50%) translateY(-5px); } 100% { transform: translate(-50%, -50%) translateY(0); } } .hero-side-decoration { position: absolute; left: -80px; top: 50%; bottom: auto; width: 140px; display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 2; transform: translateY(-50%); padding: 32px 0; /* Premium Glassmorphism */ background: rgba(250, 246, 238, 0.45); backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2); border-radius: 100px; border: 1px solid rgba(180, 134, 62, 0.15); box-shadow: 0 20px 40px -10px rgba(42, 36, 29, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5); transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease; } .hero-side-decoration:hover { box-shadow: 0 25px 50px -10px rgba(42, 36, 29, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.6); transform: translateY(-50%) scale(1.02); } /* Fio condutor de ouro elegante */ .hero-side-decoration::before { content: ""; position: absolute; left: 50%; top: 85px; bottom: 80px; width: 1px; background: linear-gradient(180deg, rgba(180, 134, 62, 0.8) 0%, rgba(180, 134, 62, 0.3) 50%, rgba(180, 134, 62, 0.05) 100%); transform: translateX(-50%); z-index: 0; } .hero-side-decoration .top-mark { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; } .hero-side-decoration svg { display: block; } .hero-side-decoration .items { display: flex; flex-direction: column; gap: 32px; align-items: center; margin-top: 28px; position: relative; z-index: 1; } .hero-side-decoration .item { display: flex; flex-direction: column; align-items: center; text-align: center; color: var(--ink-soft); font-family: 'Fraunces', serif; font-size: 11px; line-height: 1.15; max-width: 92px; background: transparent; padding: 4px 8px; transition: transform 0.3s ease; } .hero-side-decoration .item:hover { transform: translateY(-2px); } .hero-side-decoration .item .k { font-family: 'Manrope', sans-serif; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; color: var(--gold-deep); margin-bottom: 4px; } .hero-side-decoration .item .s { font-family: 'Fraunces', serif; font-size: 13px; color: var(--ink); font-weight: 500; } .hero-side-decoration .icon-accent { margin-bottom: 6px; animation: pulseGlow 4s infinite alternate ease-in-out; } .hero-side-decoration .botanical { width: 84px; height: 64px; position: relative; z-index: 1; background: transparent; margin-top: 24px; animation: slowFloat 6s infinite ease-in-out; } /* frase editorial pequena */ .hero-side-decoration .phrase { color: var(--ink-soft); text-align: center; line-height: 1.3; max-width: 100px; margin: 8px 0 12px; font-family: 'Fraunces', serif; font-size: 12.5px; background: transparent; position: relative; z-index: 1; } .hero-side-decoration .phrase em { color: var(--gold-deep); font-style: italic; font-weight: 500; } .hero-side-decoration .top-mark .rings { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); pointer-events: none; animation: floatRings 5s infinite ease-in-out reverse; } /* esconder em telas menores onde o espaço lateral desaparece */ @media (max-width:900px) { .hero-side-decoration { display: none; } } /* subtle visual accents to deepen separation between copy and image */ .hero-media::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 28%; background: linear-gradient(90deg, rgba(42, 36, 29, 0.06), transparent 40%); pointer-events: none; mix-blend-mode: multiply; opacity: 0.12; } .hero-highlight { position: relative; padding-left: 8px; } .hero-highlight::before { content: ""; position: absolute; left: -10px; top: 12px; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(180deg, var(--gold-light), var(--gold-deep)); box-shadow: 0 6px 18px rgba(180, 134, 62, 0.08); pointer-events: none; } .hero-highlight svg { color: var(--gold-deep); opacity: 0.95; } .hero-copy h1::after { content: ""; display: block; height: 3px; width: 84px; border-radius: 3px; margin-top: 12px; background: linear-gradient(90deg, var(--gold-light), var(--gold-deep)); opacity: 0.95; } /* ---------- FEATURE BAR ---------- */ .feature-bar { background: linear-gradient(145deg, #2A241D 0%, #17130F 100%); color: #EFE7D6; border-radius: 28px; max-width: 1320px; margin: -50px auto 100px; padding: 64px 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px; position: relative; z-index: 4; border: 1px solid rgba(180, 134, 62, 0.12); box-shadow: 0 40px 80px -20px rgba(20, 16, 12, 0.5), inset 0 2px 30px rgba(180, 134, 62, 0.08); } .feature-bar .fi { display: flex; flex-direction: row; align-items: flex-start; gap: 24px; transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1); } .feature-bar .fi:hover { transform: translateY(-4px); } .feature-bar .feature-content { display: flex; flex-direction: column; gap: 8px; padding-top: 6px; } .feature-bar svg { width: 60px; height: 60px; min-width: 60px; color: #C79A4A; flex-shrink: 0; transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease; } .feature-bar .fi:hover svg { transform: scale(1.08); filter: drop-shadow(0 4px 12px rgba(199, 154, 74, 0.3)); } .feature-bar h4 { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 600; color: #FFF; line-height: 1.3; transition: color 0.3s ease; } .feature-bar .fi:hover h4 { color: var(--gold-light); } .feature-bar p { font-family: 'Manrope', sans-serif; font-size: 14.5px; color: #C9C0AC; line-height: 1.6; transition: color 0.3s ease; } .feature-bar .fi:hover p { color: #EFE7D6; } .feature-bar .divider { position: absolute; top: 10%; bottom: 10%; width: 1px; background: linear-gradient(180deg, transparent 0%, rgba(180, 134, 62, 0.15) 50%, transparent 100%); } /* ---------- TREATMENTS ---------- */ section.treatments { padding: 20px 0 110px; } .treat-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 52px; flex-wrap: wrap; } .treat-head h2 { font-size: clamp(28px, 3.4vw, 40px); max-width: 560px; margin-top: 16px; } .treat-head p { color: var(--ink-soft); max-width: 360px; font-size: 15px; padding-bottom: 4px; } .treat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; } .treat-card { background: var(--white); border-radius: 20px; padding: 32px 28px; box-shadow: 0 10px 30px rgba(42, 36, 29, 0.04), 0 1px 3px rgba(42, 36, 29, 0.02); transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease; } .treat-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(42, 36, 29, 0.08), 0 4px 12px rgba(42, 36, 29, 0.04); } .treat-card .media-wrap { width: 100%; height: 170px; border-radius: 14px; overflow: hidden; margin-bottom: 24px; background: var(--cream-2); position: relative; } .treat-card .media-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1); } .treat-card:hover .media-wrap img { transform: scale(1.08); } .treat-card h3 { font-size: 19.5px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; } .treat-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; } .treat-card .tag { display: inline-block; margin-top: 18px; padding: 6px 14px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); background: rgba(180, 134, 62, 0.08); border-radius: 30px; transition: background 0.3s ease; } .treat-card:hover .tag { background: rgba(180, 134, 62, 0.15); } /* ---------- ABOUT ---------- */ section.about { background: var(--cream-2); padding: 104px 0; position: relative; overflow: hidden; } .about-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 70px; align-items: center; } .about-media { position: relative; } .about-media .avatar-lockup { width: 100%; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); position: relative; } .about-media .avatar-lockup img { width: 100%; height: 100%; object-fit: cover; object-position: top center; } .about-card { position: absolute; left: -40px; bottom: -30px; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2); border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 20px; padding: 24px 28px; box-shadow: 0 30px 60px -20px rgba(42, 36, 29, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.3); display: flex; align-items: center; gap: 16px; max-width: 320px; z-index: 10; } .about-card .num { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 700; background: linear-gradient(135deg, var(--gold-deep) 0%, #E3BA71 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; filter: drop-shadow(0 2px 4px rgba(180, 134, 62, 0.2)); } .about-card .lbl { font-size: 13px; color: var(--ink-soft); line-height: 1.45; font-weight: 700; letter-spacing: -0.01em; } .about-copy .eyebrow { margin-bottom: 18px; } .about-copy h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 22px; } .about-copy .sig { font-family: 'Parisienne', cursive; font-size: 32px; color: var(--gold-deep); margin: 8px 0 4px; } .about-copy .crefito { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; letter-spacing: .03em; margin-bottom: 26px; } .about-copy p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 18px; max-width: 520px; } .about-list { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; } .about-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink); } .about-list svg { width: 18px; height: 18px; color: var(--gold-deep); margin-top: 2px; flex-shrink: 0; } /* ---------- CONTATO ---------- */ section.contato { padding: 110px 0; background: var(--cream); position: relative; overflow: hidden; } section.contato::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line) 30%, var(--line) 70%, transparent); } .contato-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } .contato-info { display: flex; flex-direction: column; gap: 32px; } .contato-info .eyebrow { margin-bottom: 4px; } .contato-info h2 { font-size: clamp(28px, 3.2vw, 38px); line-height: 1.1; margin-bottom: 12px; } .contato-info p.lead { font-size: 16px; color: var(--ink-soft); max-width: 420px; line-height: 1.65; } .contato-cards { display: flex; flex-direction: column; gap: 14px; } .contato-card { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; background: var(--white); border-radius: 14px; border: 1px solid rgba(42, 36, 29, 0.07); box-shadow: 0 4px 14px rgba(42, 36, 29, 0.04); transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none; color: inherit; } a.contato-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42, 36, 29, 0.08); border-color: rgba(180, 134, 62, 0.25); } .contato-card-icon { width: 44px; height: 44px; border-radius: 11px; background: linear-gradient(135deg, rgba(180, 134, 62, 0.12), rgba(180, 134, 62, 0.06)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .contato-card-icon svg { width: 20px; height: 20px; color: var(--gold-deep); } .contato-card-body { display: flex; flex-direction: column; gap: 2px; } .contato-card-label { font-size: 10.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); opacity: 0.8; } .contato-card-value { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3; } .contato-card-sub { font-size: 12.5px; color: var(--ink-soft); margin-top: 1px; line-height: 1.4; } .horarios-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px; margin-top: 2px; } .horario-item { display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: var(--ink-soft); gap: 8px; } .horario-item .dia { font-weight: 600; color: var(--ink); white-space: nowrap; } .horario-item .hora { font-weight: 500; color: var(--ink-soft); text-align: right; } .contato-cta { margin-top: 4px; } /* Bloco do mapa */ .contato-mapa { display: grid; gap: 24px; } .mapa-header { display: grid; gap: 10px; } .mapa-header-text { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; max-width: 520px; } .mapa-wrap { width: 100%; aspect-ratio: 4/3; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px -20px rgba(42, 36, 29, 0.25); border: 1px solid rgba(42, 36, 29, 0.1); position: relative; background: var(--cream-2); } .mapa-wrap a { display: block; width: 100%; height: 100%; } .mapa-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; } .mapa-badge { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; padding: 18px 22px; background: var(--white); border-radius: 20px; border: 1px solid rgba(42, 36, 29, 0.07); box-shadow: 0 20px 60px -35px rgba(42, 36, 29, 0.25); } .mapa-badge svg { width: 36px; height: 36px; color: var(--gold-deep); flex-shrink: 0; } .mapa-badge-inner { display: grid; gap: 4px; } .mapa-badge-inner strong { font-size: 15px; color: var(--ink); font-weight: 700; } .mapa-badge-inner p { margin: 0; color: var(--ink-soft); font-size: 14px; } .mapa-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-deep); font-size: 13px; font-weight: 700; transition: color 0.2s ease; } .mapa-link:hover { color: var(--gold); } /* Responsive contato */ @media (max-width: 900px) { section.contato { padding: 70px 0; } .contato-inner { grid-template-columns: 1fr; gap: 48px; } .contato-mapa { position: static; } .mapa-wrap { aspect-ratio: 16/9; } .horarios-grid { grid-template-columns: 1fr; } } @media (max-width: 560px) { .contato-inner { gap: 36px; } .mapa-wrap { aspect-ratio: 4/3; border-radius: 16px; } .contato-card { padding: 14px 16px; } } /* ---------- CTA BANNER ---------- */ section.cta-banner { padding: 110px 0; position: relative; } .cta-panel { max-width: 1320px; margin: 0 auto; background: radial-gradient(circle at center right, #3A3122 0%, var(--panel-2) 40%, var(--panel) 100%); border-radius: 28px; padding: 70px 64px; display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden; border: 1px solid rgba(180, 134, 62, 0.2); box-shadow: 0 40px 80px -20px rgba(20, 16, 12, 0.6), inset 0 2px 20px rgba(180, 134, 62, 0.15); } .cta-panel::before { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(180, 134, 62, 0.45), transparent 70%); top: -200px; right: -150px; filter: blur(20px); animation: pulseGlow 8s infinite alternate ease-in-out; } .cta-text { position: relative; z-index: 2; max-width: 560px; } .cta-text .eyebrow { color: var(--gold-light); margin-bottom: 16px; } .cta-text .eyebrow::before { background: var(--gold-light); } .cta-text h2 { color: #FFF; font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 14px; } .cta-text p { color: #C9C0AC; font-size: 15.5px; max-width: 460px; } .cta-actions { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; } .cta-phone { color: #EFE7D6; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; } .cta-phone svg { width: 16px; height: 16px; color: var(--gold-light); } /* ---------- FOOTER ---------- */ footer { padding: 64px 0 34px; border-top: 1px solid var(--line); } .footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 50px; padding-bottom: 46px; } .footer-brand img { height: 40px; margin-bottom: 16px; } .footer-brand p { font-size: 13.5px; color: var(--ink-soft); max-width: 280px; line-height: 1.6; } footer h5 { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 18px; } footer ul { display: flex; flex-direction: column; gap: 11px; } footer ul a { font-size: 14px; color: var(--ink-soft); transition: color .2s ease; } footer ul a:hover { color: var(--gold-deep); } .footer-bottom { padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--ink-soft); } /* ---------- WHATSAPP FLOAT ---------- */ .wa-float { position: fixed; right: 26px; bottom: 26px; z-index: 60; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #1EBE5D); display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.45); border: 2px solid rgba(255, 255, 255, 0.35); transition: transform .25s ease, box-shadow .25s ease; } .wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 36px -12px rgba(37, 211, 102, 0.55); } .wa-float svg { width: 28px; height: 28px; color: #FFFFFF; } /* ---------- RESPONSIVE ---------- */ @media (max-width:1080px) { .about-grid { grid-template-columns: 1fr; } .about-media { max-width: 420px; margin: 0 auto; } .footer-top { grid-template-columns: 1fr 1fr; } } @media (max-width:900px) { .wrap { padding: 0 24px; } /* ---- HEADER MOBILE PREMIUM ---- */ header.nav { background: linear-gradient(180deg, transparent 0%, rgba(250, 246, 238, 0.05) 45%, rgba(245, 241, 233, 0.85) 100%); backdrop-filter: blur(16px) saturate(1.1); border-bottom: none; box-shadow: none; } /* Linha dourada sutil na base do header */ header.nav::after { content: ""; position: absolute; bottom: 0; left: 24px; right: 24px; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(180, 134, 62, 0.25) 30%, rgba(180, 134, 62, 0.4) 50%, rgba(180, 134, 62, 0.25) 70%, transparent 100%); pointer-events: none; } .nav-inner { padding: 0 20px; height: 60px; } /* Brand refinada para mobile */ .brand { gap: 10px; } .brand img { height: 34px; transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); } .brand-name { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; } .brand-name::after { width: 32px; height: 1.5px; margin-top: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); opacity: 0.8; } .brand-name small { font-size: 8.5px; letter-spacing: .2em; margin-top: 1px; opacity: 0.85; } nav.links { display: none; } .nav-cta .btn-gold { display: none; } .nav-cta { gap: 8px; } /* Menu button elevado no mobile */ .menu-btn { display: flex; width: 42px; height: 42px; border-radius: 11px; background: rgba(42, 36, 29, 0.03); border: 1px solid rgba(42, 36, 29, 0.06); transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1); } .menu-btn:active { transform: scale(0.94); background: rgba(180, 134, 62, 0.08); } .menu-btn.active { background: rgba(180, 134, 62, 0.1); border-color: rgba(180, 134, 62, 0.2); box-shadow: 0 2px 12px rgba(180, 134, 62, 0.12); } .hero-inner { padding: 0 24px; min-height: 520px; position: relative; } .hero-copy { position: relative; z-index: 3; max-width: 60%; padding: 10px 0 40px; } .hero-copy::before { display: none; } .hero-media { position: absolute; top: -20px; bottom: 0; left: 28%; right: -24px; width: auto; height: auto; margin: 0; -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .05) 15%, rgba(0, 0, 0, .3) 30%, #000 50%); mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .05) 15%, rgba(0, 0, 0, .3) 30%, #000 50%); } .hero-media img { object-position: 45% center; -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%); mask-image: linear-gradient(to bottom, #000 60%, transparent 100%); } .badge-row { grid-template-columns: repeat(2, 1fr); padding: 0 24px 40px; } .feature-bar { grid-template-columns: repeat(2, 1fr); border-radius: 24px; margin: 0 0 70px; padding: 44px 28px; } .feature-bar .divider { display: none; } section.treatments { padding: 10px 0 70px; } .treat-grid { grid-template-columns: 1fr 1fr; } .treat-head { padding: 0 24px; } .treat-grid { padding: 0 24px; } section.about { padding: 70px 0; } .about-grid { padding: 0 24px; gap: 60px; } .about-card { left: 12px; bottom: -24px; } section.cta-banner { padding: 70px 0; } .cta-panel { margin: 0 24px; padding: 46px 32px; } .footer-top { padding: 0 24px 40px; grid-template-columns: 1fr; gap: 34px; } .footer-bottom { padding: 0 24px; } /* Mobile menu ativado no 900 */ .mobile-menu { display: block !important; } /* CTA dentro do menu mobile */ .mobile-menu .cta-mobile { transform: translateY(14px); opacity: 0; transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.38s, opacity 0.45s ease 0.38s; } .mobile-menu.active .cta-mobile { transform: translateY(0); opacity: 1; } .mobile-menu .cta-mobile .btn { border-radius: 14px; font-size: 15px; padding: 16px 24px; width: 100%; justify-content: center; letter-spacing: 0.02em; } } @media (max-width:560px) { html, body { overflow-y: auto; overflow-x: hidden; } .treat-grid { grid-template-columns: 1fr; } .feature-bar { grid-template-columns: 1fr; gap: 24px; } .badge-row { grid-template-columns: 1fr 1fr; } .cta-panel { flex-direction: column; align-items: flex-start; } .nav-cta { display: flex !important; align-items: center; gap: 8px; } .menu-btn { display: flex !important; } nav.links { display: none !important; } } /* Additional small-screen refinements */ @media (max-width:420px) { html, body { overflow-y: auto; overflow-x: hidden; } .nav-cta .btn { display: none; } .nav-cta { display: flex !important; align-items: center; gap: 8px; } .menu-btn { display: flex !important; width: 40px; height: 40px; } nav.links { display: none !important; } /* Header compact no 420px */ .nav-inner { height: 56px; padding: 0 16px; } header.nav::after { left: 16px; right: 16px; } .brand { gap: 8px; } .brand img { height: 30px; } .brand-name { font-size: 17px; } .brand-name::after { width: 26px; margin-top: 3px; } .brand-name small { font-size: 7.5px; letter-spacing: .22em; } .hero-inner { padding: 0 18px; min-height: 460px; } .hero-media { left: 25%; right: -18px; top: -10px; } .hero-copy h1 { font-size: 28px; line-height: 1.08; margin-bottom: 10px; } .hero-copy p.lead { font-size: 15px; margin-bottom: 18px; } .hero-highlights { grid-template-columns: 1fr; gap: 10px 12px; } .hero-highlight::before { left: 6px; top: 10px; } .hero-copy::before { display: none; } .hero-meta { display: none; } .hero-note { font-size: 12px; } .btn { padding: 12px 18px; font-size: 14px; } /* Menu mobile */ nav.links { display: none !important; } .menu-btn { display: flex !important; } .mobile-menu { display: block !important; } .mobile-menu-content { padding-left: 28px; padding-right: 28px; } .mobile-menu nav a { font-size: clamp(26px, 6.2vw, 34px); padding: 15px 0; } } @media (max-width:375px) { html, body { overflow-y: auto; overflow-x: hidden; } .menu-btn { display: flex !important; width: 38px; height: 38px; border-radius: 10px; } /* Ajuste fino das barras no menor tamanho */ .menu-btn span:nth-child(1) { width: 19px !important; } .menu-btn span:nth-child(2) { width: 14px !important; } .menu-btn span:nth-child(3) { width: 9px !important; } .menu-btn::after { width: 3.5px; height: 3.5px; right: 6px; top: 10px; } .nav-inner { height: 52px; padding: 0 14px; } header.nav::after { left: 14px; right: 14px; } .brand img { height: 28px; } .brand { gap: 7px; } .hero-inner { min-height: 400px; } .hero-media { left: 22%; right: -14px; } .hero-media { height: 320px; } .hero-copy h1 { font-size: 24px; } .hero-copy p.lead { font-size: 14.5px; } .brand-name { font-size: 16px; } .brand-name::after { width: 22px; } .brand-name small { font-size: 7px; } .btn { padding: 11px 16px; font-size: 13.5px; } .mobile-menu-content { padding-left: 24px; padding-right: 24px; } .mobile-menu nav a { font-size: clamp(24px, 6vw, 30px); padding: 14px 0; } }