:root {
    --color-beige: #e7ca8a;
    --color-beige-light: #fdfbf7;
    --color-gold: #8a6318;
    --color-gold-light: #c9973a;
    --color-black: #16151a;
    --color-green: #25d366;
    --color-green-dark: #1aab52;
    --color-white: #ffffff;
    --color-cream: #f9f5ed;
    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-card: 0 8px 40px rgba(0,0,0,0.08);
    --shadow-gold: 0 8px 32px rgba(138,99,24,0.18);
    --radius: 20px;
    --radius-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-main);
    color: var(--color-black);
    background-color: #fff;
    line-height: 1.6;
    font-size: 17px;
    font-weight: 300;
    overflow-x: hidden;
}

.destaque-serif {
    font-family: var(--font-serif);
    color: var(--color-gold-light);
    font-style: italic;
    font-weight: 500;
}

h1, h2, h3, h4 { font-weight: 200; line-height: 1.15; margin-bottom: 1rem; }
h1 { font-size: 4rem; letter-spacing: -0.5px; }
h2 { font-size: 3rem; color: var(--color-gold); }
p { margin-bottom: 1.5rem; font-size: 1.25rem; color: #5a5660; font-weight: 300; }

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-padding { padding: 120px 0; }

/* ── Buttons ── */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366, #1aab52);
    color: #fff;
    padding: 17px 42px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(37,211,102,0.25);
    position: relative;
    overflow: hidden;
}
.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}
.btn-whatsapp:hover::before { left: 130%; }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,0.35); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1.5px solid var(--color-gold);
    color: var(--color-gold);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.btn-outline:hover { background: var(--color-gold); color: #fff; }

/* Header scrolled state */
header.scrolled {
    padding: 10px 0;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border-bottom-color: rgba(138,99,24,0.1);
}

header.scrolled .header-logo img {
    height: 52px;
}

/* ── Header ── */
header {
    padding: 18px 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.6s cubic-bezier(0.4,0,0.2,1),
                border-color 0.6s cubic-bezier(0.4,0,0.2,1),
                padding 0.6s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.6s cubic-bezier(0.4,0,0.2,1);
}

.header-container { display: flex; justify-content: space-between; align-items: center; }
.header-logo img {
    height: 80px;
    object-fit: contain;
    transition: height 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.6s cubic-bezier(0.4,0,0.2,1);
}
header:not(.scrolled) .header-logo img {
    filter: brightness(0) invert(1);
}

.cta-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(150, 115, 33, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    color: var(--color-black);
    transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
}

.cta-location i {
    color: var(--color-gold);
    font-size: 1.2rem;
    transition: color 0.6s cubic-bezier(0.4,0,0.2,1);
}

header:not(.scrolled) .cta-location {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

header:not(.scrolled) .cta-location i {
    color: var(--color-beige);
}

.header-nav { display: flex; gap: 32px; }

.header-nav a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    opacity: 0.75;
    transition: opacity 0.3s;
}
.header-nav a:hover { opacity: 1; }
.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold-light);
    transition: width 0.35s ease;
}
.header-nav a:hover::after { width: 100%; }



/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    background-color: #fdfbf5;
    background-image: url('../img/desk.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 70% 60% at 0% 10%, rgba(201,151,58,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 100% 80%, rgba(138,99,24,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 0%, rgba(231,202,138,0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Fine grain texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content h1 { color: #fff; margin-bottom: 1.5rem; }
.hero-content p { font-size: 1.4rem; margin-bottom: 2rem; line-height: 1.5; color: rgba(255,255,255,0.85); }

/* Label acima do h1 */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-beige);
    margin-bottom: 1.2rem;
    padding: 6px 16px;
    border: 1px solid rgba(231,202,138,0.4);
    border-radius: 50px;
    background: rgba(231,202,138,0.1);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 300;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}
.hero-tag:hover { background: rgba(255,255,255,0.2); border-color: var(--color-gold-light); transform: translateY(-2px); }
.hero-tag i { color: var(--color-beige); font-size: 1rem; }

.hero-mobile-img-wrapper { display: none; }

.hero-image {
    position: relative;
}
.hero-image::before {
    content: '';
    position: absolute;
    inset: -20px -20px 20px 20px;
    border: 1.5px solid rgba(138,99,24,0.2);
    border-radius: 30px;
    z-index: 0;
}
.hero-image img {
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
    position: relative;
    z-index: 1;
}

/* ── Section label (eyebrow) ── */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 1rem;
    padding: 5px 14px;
    border: 1px solid rgba(201,151,58,0.3);
    border-radius: 50px;
}

/* ── Section: Dores (Patologias) ── */
.dores {
    background-color: var(--color-cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.dores::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,151,58,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.dores h2 { margin-bottom: 1rem; }
.dores > .container > p { max-width: 600px; margin: 0 auto 3.5rem; }

.tratamentos-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.tratamento-tag {
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-black);
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(138,99,24,0.2);
    transition: all 0.35s ease;
    cursor: default;
    backdrop-filter: blur(4px);
}
.tratamento-tag:hover {
    background: var(--color-gold);
    color: #fff;
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ── Parallax ── */
.parallax-section {
    position: relative;
    padding: 160px 0;
    background-image: url('../img/parallax_bg.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16,14,20,0.75) 0%, rgba(60,40,10,0.65) 100%);
}
.parallax-content { position: relative; z-index: 2; }
.parallax-content h2 {
    color: #fff;
    margin-bottom: 0;
    font-size: 3.2rem;
    line-height: 1.25;
    max-width: 820px;
    margin: 0 auto;
}

/* ── Atendimento ── */
.atendimento { background: #fff; }
.atendimento-list { list-style: none; }
.atendimento-list li {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 20px;
    background: var(--color-cream);
    padding: 28px 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(138,99,24,0.08);
    transition: all 0.35s ease;
}
.atendimento-list li:hover { transform: translateX(8px); border-color: rgba(138,99,24,0.2); box-shadow: var(--shadow-card); }
.atendimento-list li i {
    color: var(--color-gold-light);
    font-size: 2rem;
    background: rgba(201,151,58,0.1);
    padding: 14px;
    border-radius: 14px;
    flex-shrink: 0;
}
.atendimento-list h4 { font-size: 1.3rem; margin-bottom: 0.4rem; color: var(--color-black); font-weight: 400; }
.atendimento-list p { font-size: 1.1rem; margin-bottom: 0; color: #7a7480; }

/* ── Diferencial ── */
.diferencial {
    background: linear-gradient(160deg, #16151a 0%, #231e2b 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.diferencial::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(138,99,24,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.diferencial h2 { color: var(--color-beige); margin-bottom: 1rem; position: relative; z-index: 1; }
.diferencial > .container > p { color: rgba(255,255,255,0.5); max-width: 640px; margin: 0 auto 4rem; position: relative; z-index: 1; }

.diferencial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }

.diferencial-card {
    padding: 44px 32px;
    border: 1px solid rgba(201,151,58,0.15);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    transition: all 0.4s ease;
    text-align: left;
}
.diferencial-card:hover {
    background: rgba(201,151,58,0.06);
    transform: translateY(-10px);
    border-color: rgba(201,151,58,0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.diferencial-card i { font-size: 2.5rem; color: var(--color-beige); margin-bottom: 1.5rem; display: block; }
.diferencial-card h3 { font-size: 1.6rem; color: #fff; margin-bottom: 1rem; font-weight: 300; }
.diferencial-card p { color: rgba(255,255,255,0.55); font-size: 1.1rem; margin-bottom: 0; }

/* ── Tratamentos (sintomas) ── */
.tratamentos { background: #fff; text-align: center; }

.dores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}
.dor-card {
    background: var(--color-cream);
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(138,99,24,0.1);
    transition: all 0.35s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.dor-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transition: width 0.4s ease;
}
.dor-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: rgba(138,99,24,0.2); }
.dor-card:hover::after { width: 100%; }
.dor-icon { font-size: 2.8rem; color: var(--color-gold-light); margin-bottom: 1rem; }
.dor-card p { font-size: 1.2rem; margin-bottom: 0; color: var(--color-black); font-weight: 400; line-height: 1.4; }

/* ── Onde Atendo ── */
.local { background: var(--color-cream); }
.local-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }

.local-info {
    margin: 2rem 0;
    background: #fff;
    padding: 24px 28px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-gold-light);
    box-shadow: var(--shadow-soft);
}
.local-info p { margin-bottom: 0.5rem; font-size: 1.1rem; }

.local-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.local-gallery a {
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}
.local-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(138,99,24,0.5), rgba(16,14,20,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.gallery-overlay i { color: #fff; font-size: 2.5rem; transform: scale(0.6); transition: transform 0.35s ease; }
.local-gallery a:hover img { transform: scale(1.08); }
.local-gallery a:hover .gallery-overlay { opacity: 1; }
.local-gallery a:hover .gallery-overlay i { transform: scale(1); }

/* ── Passo a Passo ── */
.passo-a-passo { background: #fff; text-align: center; }
.passos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 4rem 0; }
.passo { position: relative; }
.passo:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px; right: -12px;
    width: 24px; height: 1px;
    background: linear-gradient(90deg, var(--color-gold-light), transparent);
    opacity: 0.6;
}
.passo-numero {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 300;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(138,99,24,0.25);
}
.passo h4 { font-size: 1.2rem; font-weight: 400; margin-bottom: 0.5rem; }
.passo p { font-size: 1.05rem; color: #7a7480; }

/* ── Autoridade / Sobre ── */
.autoridade { background: var(--color-cream); }
.autoridade-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.autoridade-img { position: relative; }
.autoridade-img::before {
    content: '';
    position: absolute;
    inset: 20px -20px -20px 20px;
    border: 1.5px solid rgba(138,99,24,0.2);
    border-radius: 24px;
    z-index: 0;
}
.autoridade-img img { border-radius: 20px; box-shadow: 0 24px 60px rgba(0,0,0,0.1); position: relative; z-index: 1; }
.autoridade-content h2 { margin-bottom: 0.3rem; }
.autoridade-content h3 { color: var(--color-gold-light); font-size: 1.6rem; margin-bottom: 2rem; font-weight: 300; }
.autoridade-content p { font-size: 1.2rem; line-height: 1.7; color: #5a5660; margin-bottom: 0; }

/* ── FAQ ── */
.objecoes { background: #fff; }
.objecoes h2 { text-align: center; margin-bottom: 3.5rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1000px; margin: 0 auto; }
.faq-item {
    background: var(--color-cream);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(138,99,24,0.1);
    transition: all 0.3s ease;
}
.faq-item:hover { border-color: rgba(201,151,58,0.35); box-shadow: var(--shadow-card); }
.faq-item h4 { font-size: 1.2rem; margin-bottom: 12px; color: var(--color-gold); font-weight: 400; display: flex; align-items: flex-start; gap: 10px; }
.faq-item p { margin-bottom: 0; font-size: 1.1rem; color: #7a7480; }

/* ── CTA Final ── */
.cta-final {
    background: linear-gradient(160deg, #16151a 0%, #231e2b 100%);
    color: #fff;
    text-align: center;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    bottom: -200px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, rgba(138,99,24,0.15) 0%, transparent 65%);
    pointer-events: none;
}
.cta-final h2 { color: #fff; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.cta-final p { color: rgba(255,255,255,0.6); font-size: 1.4rem; max-width: 700px; margin: 0 auto 3rem; position: relative; z-index: 1; }
.cta-final > .container > div { position: relative; z-index: 1; }

/* ── Footer ── */
footer {
    background: #0e0d12;
    color: rgba(255,255,255,0.45);
    text-align: center;
    padding: 56px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
footer img { height: 80px; margin: 0 auto 28px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.85; }
footer p { font-size: 0.9rem; margin-bottom: 0; letter-spacing: 0.5px; }

/* ── Floating WhatsApp ── */
.floating-whatsapp {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 58px; height: 58px;
    background: linear-gradient(135deg, #25d366, #1aab52);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(37,211,102,0.35);
    z-index: 1000;
    transition: transform 0.3s ease;
}
.floating-whatsapp:hover { transform: scale(1.1); }

.sonar-wave {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--color-green);
    z-index: -1;
    animation: sonar 2.2s ease-out infinite;
}
@keyframes sonar {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* ── Responsive ── */
@media (max-width: 1400px) {
    h1 { font-size: 3.2rem; }
    .header-logo img { height: 60px; }
    header { padding: 14px 0; }
    .hero { padding-top: 100px; }
    .hero .container { gap: 40px; }
    .hero-content h1 { margin-bottom: 1rem; }
    .hero-content p { font-size: 1.15rem; margin-bottom: 1.5rem; line-height: 1.4; }
    .hero-tag { font-size: 0.85rem; padding: 6px 12px; }
    .hero-doencas-grid { gap: 8px !important; margin-bottom: 1.8rem !important; }
    .btn-whatsapp { padding: 14px 30px; font-size: 1rem; }
    .hero-label { margin-bottom: 1rem; padding: 5px 14px; }
}

@media (max-width: 992px) {
    .header-container { justify-content: space-between; }
    .header-nav { display: none; }
    .header-logo img { height: 48px; }
    .hero .container, .local-grid, .autoridade-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-doencas-grid { justify-content: center !important; margin-bottom: 2rem !important; }
    .hero-image::before, .autoridade-img::before { display: none; }
    .local-info { text-align: left; }
    .parallax-content h2 { font-size: 2.4rem; }
    h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.25rem; }
    .passos-grid, .diferencial-grid, .faq-grid { grid-template-columns: 1fr; }
    .passo:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; margin-bottom: 1rem; }
    h2 { font-size: 2rem; }
    .header-container { justify-content: space-between; }
    
    .header-logo { max-width: 50%; display: flex; align-items: center; justify-content: flex-start; }
    .header-logo img { max-width: 100%; height: auto; max-height: 36px; object-fit: contain; }
    header.scrolled .header-logo img { max-height: 30px; }
    
    .cta-location { font-size: 0.6rem; padding: 5px 10px; gap: 5px; }
    .cta-location i { font-size: 1rem; }
    
    header { padding: 12px 0; }
    .hero-label { font-size: 0.7rem; padding: 4px 12px; margin-bottom: 1rem; }
    .hero-content p { font-size: 1.1rem; margin-bottom: 1.5rem; line-height: 1.4; }
    .hero-tag { font-size: 0.8rem; padding: 5px 12px; gap: 5px; }
    .hero-doencas-grid { gap: 8px !important; margin-bottom: 1.5rem !important; }
    
    .btn-whatsapp { font-size: 0.75rem; padding: 12px 14px; gap: 6px; white-space: nowrap; width: 100%; justify-content: center; }
    
    .hero-mobile-img-wrapper { display: block; margin-top: 2.5rem; text-align: center; }
    .hero-mobile-img { width: 100%; max-width: 380px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); display: inline-block; }
    
    .floating-whatsapp { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.8rem; }
    .hero { background-image: url('../img/mob.webp'); background-position: center top; min-height: 100vh; padding-top: 100px; padding-bottom: 40px; }
    .hero::before, .hero::after { display: none; }
    .container { padding: 0 20px; }
    section { overflow: hidden; }
}