/* ===== CSS Variables ===== */
:root {
    --color-primary: #8BA98B;
    --color-primary-light: rgba(139, 169, 139, 0.15);
    --color-primary-dark: #5C7A5C;
    --color-secondary: #C4A77D;
    --color-accent: #D4A574;
    --color-gold: #B8860B;
    --color-gold-light: #D4A84B;
    --color-gold-strong: #C9951A;
    --color-cream: #FBF9F6;
    --color-cream-dark: #F5F0E8;
    --color-beige: #F5E6D3;
    --color-beige-light: #FAF3EB;
    --color-brown: #6B5344;
    --color-brown-light: #8B7355;
    --color-text: #4A4A4A;
    --color-text-light: #7A7A7A;
    --color-white: #FFFFFF;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #1EBE57;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 10px 40px rgba(139, 169, 139, 0.15);

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 25px;
    --border-radius-lg: 40px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Floating Leaves Background ===== */
.floating-leaves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 150px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 150' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0C50 0 100 40 80 100C60 150 10 130 5 80C0 30 50 0 50 0Z' fill='rgba(139, 169, 139, 0.08)'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.6;
}

.leaf-1 {
    top: 10%;
    left: -50px;
    transform: rotate(-20deg);
}

.leaf-2 {
    top: 40%;
    right: -60px;
    transform: rotate(30deg) scaleX(-1);
}

.leaf-3 {
    bottom: 20%;
    left: -40px;
    transform: rotate(10deg);
}

.leaf-4 {
    bottom: 5%;
    right: -50px;
    transform: rotate(-15deg) scaleX(-1);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(196, 167, 125, 0.35);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 167, 125, 0.45);
}

/* Botao WhatsApp Hero - Grande e chamativo */
.btn-whatsapp-hero {
    background: linear-gradient(135deg, var(--color-gold-strong) 0%, #DAA520 50%, var(--color-gold-light) 100%);
    color: var(--color-white);
    padding: 20px 45px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.45);
    animation: pulse-glow 2.5s ease-in-out infinite;
}

.btn-whatsapp-hero:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 35px rgba(184, 134, 11, 0.6);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(184, 134, 11, 0.45);
    }
    50% {
        box-shadow: 0 6px 35px rgba(184, 134, 11, 0.65), 0 0 20px rgba(218, 165, 32, 0.3);
    }
}

/* Botao WhatsApp Contato */
.btn-whatsapp-contato {
    background: linear-gradient(135deg, var(--color-whatsapp) 0%, var(--color-whatsapp-dark) 100%);
    color: var(--color-white);
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    margin-bottom: 25px;
}

.btn-whatsapp-contato:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Botao CTA Header */
.btn-header-cta {
    background: linear-gradient(135deg, var(--color-gold-strong) 0%, var(--color-gold-light) 100%);
    color: var(--color-white);
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 25px;
    box-shadow: 0 3px 12px rgba(184, 134, 11, 0.35);
}

.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(184, 134, 11, 0.5);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(139, 169, 139, 0.95) 0%, rgba(107, 138, 107, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo a {
    display: block;
}

.logo-img {
    height: 55px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav ul {
    display: flex;
    gap: 35px;
}

.nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-white);
    position: relative;
}

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

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.nav .nav-cta {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--color-white);
    transition: var(--transition);
}

.header-social a:hover {
    color: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.header-social svg {
    width: 20px;
    height: 20px;
}

/* Redes sociais dentro do nav (para mobile) */
.nav-social {
    display: none;
}

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

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

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-cream) 100%);
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding-left: 20px;
}

.hero-text h2 {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-primary-dark);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-brown);
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.hero-text p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 420px;
    line-height: 1.7;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0 0 0 40%;
}

/* ===== Sobre Section ===== */
.sobre {
    padding: 120px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.sobre .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.sobre-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-slow);
}

.image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.1) 100%);
}

.sobre-content h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-brown);
    margin-bottom: 25px;
}

.sobre-content p {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

/* ===== Diferenciais Section ===== */
.diferenciais {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-beige-light) 100%);
    text-align: center;
}

.diferenciais h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-brown);
    margin-bottom: 60px;
}

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

.diferencial-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition-slow);
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 169, 139, 0.2);
}

.diferencial-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.diferencial-card:hover .diferencial-icon {
    transform: scale(1.1) rotate(5deg);
}

.diferencial-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-white);
}

.diferencial-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-brown);
    margin-bottom: 12px;
}

.diferencial-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== Tratamentos Section ===== */
.tratamentos {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-beige-light) 0%, var(--color-cream) 50%, var(--color-cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

.tratamentos .container {
    position: relative;
    z-index: 2;
}

.tratamentos-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 55px;
    flex-wrap: wrap;
    gap: 20px;
}

.tratamentos-header h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-brown);
    font-style: italic;
}

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

.tratamento-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 30px;
    padding: 28px 30px 30px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 22px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition-slow);
    text-align: left;
}

.tratamento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 169, 139, 0.2);
}

.card-image-blob {
    width: 110px;
    height: 110px;
    min-width: 110px;
    border-radius: 55% 45% 50% 50% / 50% 55% 45% 50%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--color-beige-light) 0%, var(--color-beige) 100%);
    padding: 5px;
    transition: var(--transition);
}

.tratamento-card:hover .card-image-blob {
    transform: scale(1.08) rotate(3deg);
}

.card-image-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
}

.tratamento-card-content {
    flex: 1;
}

.tratamento-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-brown);
    margin-bottom: 10px;
    line-height: 1.25;
    font-style: italic;
}

.tratamento-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Folhas decorativas da secao tratamentos */
.tratamentos-leaf-top {
    position: absolute;
    top: -30px;
    right: -40px;
    width: 200px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
    transform: rotate(30deg);
}

.tratamentos-leaf-top img {
    width: 100%;
    height: auto;
}

.tratamentos-leaf-bottom-left {
    position: absolute;
    bottom: -40px;
    left: -50px;
    width: 220px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.45;
    transform: rotate(-120deg);
}

.tratamentos-leaf-bottom-left img {
    width: 100%;
    height: auto;
}

.tratamentos-leaf-bottom-right {
    position: absolute;
    bottom: 20px;
    right: -30px;
    width: 180px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
    transform: rotate(60deg);
}

.tratamentos-leaf-bottom-right img {
    width: 100%;
    height: auto;
}

/* Grid layout for tratamentos */
@media (min-width: 1025px) {
    .tratamentos-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .tratamento-card {
        flex: 0 0 calc(33.333% - 17px);
        max-width: calc(33.333% - 17px);
    }

    .tratamento-card:nth-child(4),
    .tratamento-card:nth-child(5) {
        flex: 0 0 calc(33.333% - 17px);
        max-width: calc(33.333% - 17px);
    }
}

/* Tablet - 2 cards por linha */
@media (min-width: 769px) and (max-width: 1024px) {
    .tratamentos-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .tratamento-card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

/* ===== Depoimentos Section ===== */
.depoimentos {
    padding: 120px 0;
    background: var(--color-white);
    text-align: center;
}

.depoimentos h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-brown);
    margin-bottom: 60px;
}

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

.depoimento-card {
    background: var(--color-cream);
    border-radius: 25px;
    padding: 35px 30px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition-slow);
    position: relative;
}

.depoimento-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: var(--font-serif);
    font-size: 80px;
    color: var(--color-primary);
    opacity: 0.15;
    line-height: 1;
}

.depoimento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(139, 169, 139, 0.18);
}

.depoimento-stars {
    margin-bottom: 18px;
}

.depoimento-stars span {
    color: #F5A623;
    font-size: 20px;
    margin-right: 2px;
}

.depoimento-texto {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 22px;
    font-style: italic;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 12px;
}

.depoimento-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.depoimento-autor strong {
    display: block;
    font-size: 14px;
    color: var(--color-brown);
}

.depoimento-autor span {
    font-size: 12px;
    color: var(--color-text-light);
}

/* ===== Profissionais Section ===== */
.profissionais {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, rgba(139, 169, 139, 0.08) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.profissionais h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-brown);
    margin-bottom: 55px;
}

.profissionais-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.profissional-card {
    text-align: center;
    transition: var(--transition-slow);
}

.profissional-card:hover {
    transform: translateY(-8px);
}

.profissional-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-medium);
    border: 6px solid var(--color-white);
    transition: var(--transition);
}

.profissional-card:hover .profissional-image {
    box-shadow: 0 10px 35px rgba(139, 169, 139, 0.3);
}

.profissional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profissional-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-brown);
    margin-bottom: 5px;
}

.profissional-card p {
    font-size: 13px;
    color: var(--color-text-light);
}

/* ===== Contato Section ===== */
.contato {
    padding: 120px 0;
    background: var(--color-white);
}

.contato .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contato-content h2 {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 600;
    color: var(--color-brown);
    margin-bottom: 15px;
}

.contato-content > p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contato-info {
    margin-bottom: 28px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--color-text);
    font-size: 15px;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(5px);
}

.info-item svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.info-item a {
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.contato-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contato-form {
    background: var(--color-cream);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 12px;
    border: 1px solid rgba(139, 169, 139, 0.15);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 14px;
    background: var(--color-white);
    transition: var(--transition);
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 169, 139, 0.1);
    transform: scale(1.01);
}

.contato-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contato-form .btn {
    width: 100%;
    margin-top: 8px;
}

.contato-mapa {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #4A6B4A 100%);
    padding: 40px 0;
    text-align: center;
}

.footer-logo h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 3px;
}

.footer-logo span {
    display: block;
    font-size: 9px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-top: 2px;
    margin-bottom: 20px;
}

.footer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--color-white);
    transform: scale(1.2) rotate(5deg);
}

.footer-social svg {
    width: 22px;
    height: 22px;
}

/* ===== Scroll Reveal Animation ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-text h2 {
        font-size: 42px;
    }

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

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

    .depoimento-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: var(--color-cream);
        padding: 20px;
        box-shadow: var(--shadow-soft);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav a {
        color: var(--color-brown);
    }

    .nav a::after {
        background: var(--color-brown);
    }

    .nav a:hover {
        color: var(--color-primary-dark);
    }

    .nav .nav-cta {
        display: inline-flex;
        margin-top: 15px;
    }

    /* Esconder redes sociais e botao do header no mobile */
    .header-right {
        display: none;
    }

    /* Mostrar redes sociais dentro do menu hamburguer */
    .nav-social {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid rgba(139, 169, 139, 0.3);
    }

    .nav-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        color: var(--color-primary);
        transition: var(--transition);
    }

    .nav-social a:hover {
        color: var(--color-primary-dark);
        transform: scale(1.1);
    }

    .nav-social svg {
        width: 24px;
        height: 24px;
    }

    .logo-img {
        height: 50px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        padding-left: 0;
        order: 1;
    }

    .hero-image {
        order: 2;
        justify-content: center;
    }

    .hero-text h2 {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-text p {
        margin: 0 auto 25px;
    }

    .btn-whatsapp-hero {
        padding: 16px 35px;
        font-size: 13px;
    }

    .hero-image-wrapper {
        max-width: 320px;
    }

    .sobre {
        padding: 80px 0;
    }

    .sobre .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .sobre-content h2 {
        font-size: 34px;
    }

    .diferenciais {
        padding: 80px 0;
    }

    .diferenciais h2 {
        font-size: 34px;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tratamentos {
        padding: 80px 0;
    }

    .tratamentos-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .tratamentos-header h2 {
        font-size: 34px;
    }

    .tratamentos-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .tratamento-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 25px 20px;
    }

    .tratamento-card:nth-child(n) {
        grid-column: auto !important;
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }

    .card-image-blob {
        margin: 0 auto 15px;
    }

    .depoimentos {
        padding: 80px 0;
    }

    .depoimentos h2 {
        font-size: 34px;
    }

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

    .depoimento-card:nth-child(3) {
        max-width: 100%;
    }

    .profissionais {
        padding: 80px 0;
    }

    .profissionais h2 {
        font-size: 34px;
    }

    .contato {
        padding: 80px 0;
    }

    .contato .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .contato-content h2 {
        font-size: 34px;
    }

    .contato-info {
        display: inline-block;
        text-align: left;
    }

    .social-links {
        justify-content: center;
    }

    .btn-whatsapp-contato {
        width: 100%;
    }

    .floating-leaves {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 28px;
    }

    .sobre-content h2,
    .diferenciais h2,
    .tratamentos-header h2,
    .depoimentos h2,
    .profissionais h2,
    .contato-content h2 {
        font-size: 28px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 12px;
    }

    .btn-whatsapp-hero {
        padding: 16px 30px;
        font-size: 12px;
    }

    .contato-form {
        padding: 25px;
    }

    .card-image-blob {
        width: 120px;
        height: 120px;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-image-wrapper {
    animation: float 5s ease-in-out infinite;
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--color-whatsapp) 0%, var(--color-whatsapp-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    z-index: 999;
    animation: whatsapp-bounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.65);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 78px;
    background: linear-gradient(135deg, #6B5344 0%, #8B7355 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(107, 83, 68, 0.3);
}

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

@keyframes whatsapp-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 58px;
        height: 58px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}
