/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2b2b29;
    --secondary-color: #f4f7ee;
    --accent-color: #3a3a38;
    --beige-color: #f4f7ee;
    --text-color: #2b2b29;
    --text-light: #5a5a58;
    --light-bg: #f4f7ee;
    --overlay: linear-gradient(135deg, rgba(43, 43, 41, 0.85), rgba(58, 58, 56, 0.8));
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 100;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 4rem;
    font-weight: 100;
}

h2 {
    font-size: 3rem;
    font-weight: 100;
}

h3 {
    font-size: 2rem;
    font-weight: 300;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header e Navegação - Design Moderno */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.nav {
    padding: 1.5rem 0;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 100;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 1.5rem 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-color);
    text-transform: none;
    font-size: 0.95rem;
    letter-spacing: 0;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 2.5rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section - Design Elegante com Background à Direita */
.hero {
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    background: #2c2c2a;
    margin-top: 100px;
    overflow: hidden;
    padding: 4rem 0;
}

/* Background image posicionada à direita */
.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 120%;
    background-image: url('../images/tatyane-albuquerque.webp');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Degradê elegante por cima da imagem */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(44, 44, 42, 0.95) 0%, 
        rgba(44, 44, 42, 0.85) 30%,
        rgba(44, 44, 42, 0.7) 50%, 
        rgba(44, 44, 42, 0.5) 70%,
        rgba(44, 44, 42, 0.3) 85%,
        rgba(44, 44, 42, 0.1) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #f4f7ee;
    max-width: 1000px;
    padding: 3rem;
    padding-left: calc((100vw - 1400px) / 2 + 40px);
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

.hero-image {
    display: none;
}

/* Hero da página Quem Sou - Cores padrão do site */
.hero-quem-sou {
    min-height: 650px;
}

.hero-bg-quem-sou {
    background-image: url('../images/terapeuta-tatyane-albuquerque-df.webp');
    width: 50%;
    right: 0;
}

.hero-content-quem-sou {
    text-align: left;
    max-width: 700px;
    margin: 0;
    padding: 3rem;
    padding-left: calc((100vw - 1400px) / 2 + 40px);
}

.hero-content-quem-sou h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content-quem-sou p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Hero para páginas de tratamento - Estilo unificado */
.hero-treatment {
    min-height: 650px;
}

.hero-content-treatment {
    text-align: left;
    max-width: 700px;
    margin: 0;
    padding: 3rem;
    padding-left: calc((100vw - 1400px) / 2 + 40px);
}

.hero-content-treatment h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content-treatment p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 100;
    letter-spacing: -1px;
    line-height: 1.1;
    color: #f4f7ee;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #f4f7ee;
}

/* Hero backgrounds são definidos inline em cada página para melhor performance */

/* Botões - Design Moderno */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: #b59d81;
    color: #2b2b29;
    box-shadow: 0 4px 15px rgba(181, 157, 129, 0.3);
}

.btn-primary:hover {
    background: #a08a6f;
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 8px 25px rgba(181, 157, 129, 0.4);
}

.btn-secondary {
    background: #b59d81;
    border-color: #b59d81;
    color: #2b2b29;
}

.btn-secondary:hover {
    background: #a08a6f;
    color: #2b2b29;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(181, 157, 129, 0.4);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link::after {
    content: '→';
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-link:hover {
    color: var(--accent-color);
}

.btn-link:hover::after {
    transform: translateX(5px);
}

/* Seções - Design Moderno */
section {
    padding: 8rem 0;
    position: relative;
}

.sobre-section {
    background: linear-gradient(135deg, var(--beige-color) 0%, #f5f0eb 100%);
    position: relative;
}

.sobre-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.sobre-image {
    order: -1;
}

.sobre-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.sobre-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.sobre-text p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-light);
}

.sobre-image {
    position: relative;
}

.sobre-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    z-index: 0;
}

.sobre-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.sobre-image:hover img {
    transform: scale(1.02);
}

/* Terapias Grid - Design Impactante */
.terapias-section {
    text-align: center;
    background: white;
}

.terapias-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.terapias-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.terapias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.terapia-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 450px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
}

.terapia-card::before {
    display: none;
}

.terapia-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.terapia-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.terapia-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    background: rgba(41, 41, 39, 0.75);
    text-align: left;
}

.terapia-card:hover .terapia-content {
    background: rgba(41, 41, 39, 0.85);
}

.terapia-card h3 {
    color: #f4f7ee;
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 1.5rem;
}

.terapia-card p {
    color: #f4f7ee;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.terapia-card .btn-link {
    color: #f4f7ee;
    text-align: left;
    display: inline-block;
    font-weight: 400;
}

.terapia-card .btn-link:hover {
    color: #b59d81;
}

/* Depoimentos - Design Moderno */
.depoimentos-home {
    background: #2c2c2a;
    text-align: center;
    position: relative;
}

.depoimentos-home::before {
    display: none;
}

.depoimentos-home h2 {
    color: #f4f7ee;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.depoimentos-home h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #b59d81;
}

.depoimentos-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 5rem 0 3rem;
}

.depoimento-card {
    background: rgba(244, 247, 238, 0.05);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #b59d81;
    position: relative;
}

.depoimento-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: #fff;
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: rgba(244, 247, 238, 0.08);
}

.depoimento-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #f4f7ee;
    position: relative;
    z-index: 1;
    line-height: 1.9;
}

.depoimento-autor {
    color: #b59d81;
    font-weight: 500;
    font-style: normal;
}

/* Galeria Section */
.galeria-section {
    padding: 8rem 0;
    background: white;
    text-align: center;
}

.galeria-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.galeria-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.galeria-section > .container > p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(0.2);
}

.galeria-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.galeria-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

/* CTA Section - Design Impactante */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* Conteúdo de Terapias - Design Moderno */
.terapia-content {
    padding: 2rem;
}

.content-intro {
    max-width: 1000px;
    margin: 0 auto 5rem;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-light);
    text-align: center;
    padding: 3rem;
    background: var(--beige-color);
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
}

.content-section {
    max-width: 1000px;
    margin: 5rem auto;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.content-section h3 {
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.content-section p {
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 1rem;
}

.benefits-list li {
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    position: relative;
    background: var(--beige-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
}

.benefits-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
}

.benefits-list li::before {
    content: '✨';
    position: absolute;
    left: 1.2rem;
    font-size: 1.3rem;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 2rem 2rem 2rem 3rem;
    margin: 3rem 0;
    font-style: italic;
    color: var(--text-light);
    background: var(--beige-color);
    border-radius: 10px;
    position: relative;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.content-cta {
    max-width: 1000px;
    margin: 6rem auto;
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, var(--beige-color) 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(160, 160, 160, 0.15);
}

.content-cta h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Página de Depoimentos - Design Moderno */
.depoimentos-page {
    padding: 5rem 0;
}

.depoimentos-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-light);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin: 5rem 0;
}

.depoimento-item {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.depoimento-item::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
}

.depoimento-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.depoimento-stars {
    color: #ffc107;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.depoimento-text {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

.depoimento-autor {
    font-weight: 500;
    color: #fff;
    font-style: normal;
    font-size: 1.05rem;
}

.depoimento-data {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

.depoimentos-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 4rem;
    background: linear-gradient(135deg, var(--beige-color) 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.depoimentos-cta h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.depoimentos-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

/* Página Quem Sou - Design Moderno */
.quem-sou-content {
    padding: 5rem 0;
}

.quem-sou-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 4rem;
    background: var(--beige-color);
    border-radius: 20px;
}

.quem-sou-image {
    position: relative;
}

.quem-sou-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    z-index: 0;
}

.quem-sou-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.quem-sou-image:hover img {
    transform: scale(1.02);
}

.quem-sou-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.quem-sou-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.quem-sou-text p {
    line-height: 2;
    color: var(--text-light);
    font-size: 1.05rem;
}

.quem-sou-section {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.quem-sou-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.quem-sou-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.quem-sou-section p {
    line-height: 2;
    color: var(--text-light);
}

.quem-sou-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    color: white;
}

.quem-sou-cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.quem-sou-cta h2::after {
    display: none;
}

.quem-sou-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Página de Contato - Design Moderno */
.contato-content {
    padding: 5rem 0;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 6rem;
}

.contato-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.contato-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.contato-info > p {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 3rem;
}

.contato-item {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border-left: 4px solid var(--primary-color);
}

.contato-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contato-icon {
    font-size: 2.5rem;
    min-width: 50px;
}

.contato-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.contato-details p {
    color: var(--text-light);
    line-height: 1.8;
}

.contato-form {
    background: linear-gradient(135deg, var(--beige-color) 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(160, 160, 160, 0.15);
}

.contato-form h2 {
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.contato-form h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    transition: all 0.3s ease;
    background: white;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 150, 190, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contato-map {
    margin-top: 6rem;
}

.contato-map h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.contato-map h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Footer - Design Moderno */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    color: #f4f7ee;
    margin-bottom: 1.5rem;
    font-weight: 400;
    position: relative;
    display: inline-block;
}

.footer-col h3::after,
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #b59d81;
}

.footer-col p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #ccc;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Responsividade - Design Moderno */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: white;
        flex-direction: column;
        padding: 3rem 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu li {
        margin: 0;
        padding: 0;
    }

    .nav-menu > li > a {
        padding: 1.2rem 0;
        display: block;
        font-size: 1rem;
        border-bottom: 1px solid #f0f0f0;
        text-align: center;
    }

    /* Dropdown no mobile */
    .dropdown {
        width: 100%;
    }

    .dropdown > a {
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        user-select: none;
        position: relative;
    }

    .dropdown > a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        display: block !important;
        background: transparent;
        border-radius: 0;
        border-left: none;
        margin-top: 0;
        margin-bottom: 0;
        overflow: hidden;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }
        to {
            opacity: 1;
            max-height: 400px;
        }
    }

    .dropdown-menu li {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .dropdown-menu a {
        padding: 1rem 0 !important;
        display: block;
        width: 100%;
        font-size: 0.9rem !important;
        color: #666 !important;
        border-bottom: 1px solid #f0f0f0;
        background: transparent !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        transition: all 0.3s ease;
        text-align: center !important;
    }

    .dropdown-menu li:last-child a {
        border-bottom: 1px solid #f0f0f0;
    }

    .dropdown-menu a::after {
        display: none !important;
    }

    .dropdown-menu a:hover {
        color: var(--primary-color) !important;
        background: transparent !important;
    }

    .hero {
        min-height: 500px;
        padding: 3rem 0;
    }

    .hero-bg-image {
        width: 100% !important;
        right: 0 !important;
        opacity: 1;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, 
            rgba(44, 44, 42, 0.75) 0%, 
            rgba(44, 44, 42, 0.70) 40%, 
            rgba(44, 44, 42, 0.80) 100%
        );
    }
    
    .hero-bg-quem-sou {
        width: 100% !important;
        right: 0 !important;
    }
    
    .hero-content-quem-sou {
        padding: 2rem 20px;
        text-align: center;
    }

    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
        max-width: 100%;
    }

    .hero-content-treatment {
        padding: 2rem 20px;
        text-align: center;
    }

    .hero-content h1,
    .hero-content-quem-sou h1,
    .hero-content-treatment h1 {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    }

    .hero-content p,
    .hero-content-quem-sou p,
    .hero-content-treatment p {
        text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    }

    /* Centralizar botões do hero no mobile */
    .hero-content .btn-primary,
    .hero-content-quem-sou .btn-primary,
    .hero-content-treatment .btn-primary {
        display: inline-block;
        margin: 0 auto;
    }

    .hero-content > div,
    .hero-content-quem-sou > div,
    .hero-content-treatment > div {
        justify-content: center !important;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .sobre-content,
    .contato-grid,
    .quem-sou-intro {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .terapias-grid,
    .depoimentos-slider,
    .depoimentos-grid,
    .galeria-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    section {
        padding: 5rem 0;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        min-height: 450px;
        margin-top: 80px;
        padding: 20rem 0 0 0;
    }

    .hero-bg-image {
        background-position: center;
        opacity: 1;
    }
    
    .hero-overlay {
        background: linear-gradient(to bottom, 
            rgba(44, 44, 42, 0.6) 0%, 
            rgba(44, 44, 42, 0.5) 40%, 
            rgba(44, 44, 42, 0.65) 100%
        );
    }
    
    .hero-quem-sou {
        padding: 20rem 0 0 0;
    }
    
    .hero-bg-quem-sou {
        width: 100%;
        background-position: center;
    }
    
    .hero-content-quem-sou {
        text-align: center;
    }
    
    .hero-content-quem-sou h1 {
        font-size: 2.2rem;
    }
    
    .hero-content-quem-sou p {
        font-size: 1.1rem;
    }
    
    .hero-content-quem-sou > div[style*="display: flex"] {
        justify-content: center;
    }

    .hero-content {
        padding: 2rem 20px;
    }

    .hero-image {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    section {
        padding: 4rem 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }

    .nav {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.4rem;
    }

    .terapias-grid,
    .depoimentos-slider,
    .depoimentos-grid {
        gap: 2rem;
    }

    .terapia-card,
    .depoimento-card,
    .depoimento-item {
        padding: 0rem;
    }

    .content-intro,
    .content-section,
    .content-cta {
        padding: 2rem;
    }

    .contato-form {
        padding: 2rem;
    }

    .quem-sou-intro {
        padding: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 20px;
    }

    .terapias-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* Animações e Efeitos Extras */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    cursor: pointer;
}

.whatsapp-float svg {
    width: 38px;
    height: 38px;
    position: relative;
    z-index: 2;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    background: #128C7E;
    box-shadow: 0 6px 35px rgba(37, 211, 102, 0.7);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.3;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Gradiente de Texto */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Hover Effect Avançado */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-3d:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

/* Linha Decorativa */
.decorative-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    margin: 2rem 0;
}

/* Badge/Tag */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Divider com Ícone */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 3rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(37, 150, 190, 0.2);
}

.divider::before {
    margin-right: 1rem;
}

.divider::after {
    margin-left: 1rem;
}

/* Tooltip */
.tooltip {
    position: relative;
    cursor: help;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: var(--text-color);
    color: white;
    border-radius: 5px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.tooltip:hover::after {
    opacity: 1;
}

/* Seleção de Texto Personalizada */
::selection {
    background: var(--beige-color);
    color: var(--text-color);
}

::-moz-selection {
    background: var(--beige-color);
    color: var(--text-color);
}

/* Scrollbar Personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(37, 150, 190, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Efeito de Brilho nos Botões */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -200%;
    }
    100% {
        left: 200%;
    }
}

/* Efeito de Ondulação */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Modo de Alto Contraste */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #1a7a9e;
        --text-color: #000;
    }
}

/* Estilos Adicionais para Paleta Neutra */

/* Accent em elementos decorativos */
.sobre-section::before,
.depoimentos-home::before {
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Cards com borda sutil */
.terapia-card::before {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* Footer com gradiente suave */
.footer {
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
}

.footer::before {
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Hover states refinados */
.nav-menu a::after {
    background: var(--primary-color);
}

.dropdown-menu a:hover {
    background: var(--beige-color);
}

/* Decorações com a paleta */
.sobre-text h2::after,
.content-section h2::after,
.terapias-section h2::after,
.depoimentos-home h2::after {
    background: var(--primary-color);
}

.sobre-image::before {
    border-color: var(--primary-color);
}

/* Modo Escuro (preparado para futuro) */
@media (prefers-color-scheme: dark) {
    /* Descomente para ativar modo escuro automático
    body {
        background: #1a1a1a;
        color: #fff;
    }
    
    .header {
        background: rgba(26, 26, 26, 0.98);
    }
    */
}

/* Acessibilidade - Foco Visível */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Redução de Movimento */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn-primary,
    .btn-secondary,
    .whatsapp-float,
    .scroll-top-btn {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

/* Hero para páginas internas (sem imagem ao lado) */
.hero.hero-internal {
    grid-template-columns: 1fr;
    background-size: cover;
    background-position: center;
    min-height: 450px;
    padding: 6rem 0;
}

.hero.hero-internal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 43, 41, 0.7);
    z-index: 1;
}

.hero.hero-internal .hero-content {
    padding-left: calc((100vw - 1400px) / 2 + 40px);
    padding-right: calc((100vw - 1400px) / 2 + 40px);
    text-align: center;
    max-width: 100%;
}

.hero.hero-internal .hero-content h1,
.hero.hero-internal .hero-content p {
    color: var(--secondary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 968px) {
    .hero.hero-internal .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 600px) {
    .hero.hero-internal {
        padding: 4rem 0;
        min-height: 350px;
    }
    
    .hero.hero-internal .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ========================================
   NOVO DESIGN SURPREENDENTE PARA TRATAMENTOS
   Layout visual com hero fullscreen e cards elegantes
   ======================================== */

/* Hero Fullscreen com Parallax */
.treatment-hero-full {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}

.treatment-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.treatment-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.treatment-hero-full:hover .treatment-hero-bg img {
    transform: scale(1);
}

.treatment-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 43, 41, 0.85), rgba(181, 157, 129, 0.3));
    z-index: 2;
}

.treatment-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.treatment-hero-label {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b59d81;
    margin-bottom: 2rem;
    font-weight: 500;
    display: inline-block;
    padding: 0.5rem 2rem;
    border: 2px solid #b59d81;
    border-radius: 50px;
}

.treatment-hero-title {
    font-size: 5rem;
    font-weight: 100;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.treatment-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.treatment-hero-cta {
    display: inline-flex;
    gap: 1.5rem;
}

.treatment-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.treatment-scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.treatment-scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Seção de Introdução Visual */
.treatment-intro-visual {
    padding: 8rem 0;
    background: white;
    position: relative;
}

.treatment-intro-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, #f4f7ee, white);
}

.treatment-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.treatment-intro-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.treatment-intro-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.treatment-intro-image:hover img {
    transform: scale(1.05);
}

.treatment-intro-text h2 {
    font-size: 3.5rem;
    font-weight: 100;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.treatment-intro-text p {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.treatment-intro-text .highlight-box {
    background: linear-gradient(135deg, #f4f7ee, #e8ebe0);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid #b59d81;
    margin: 3rem 0;
}

.treatment-intro-text .highlight-box p {
    margin: 0;
    font-style: italic;
    color: var(--primary-color);
}

/* Cards de Processo em Timeline */
.treatment-process {
    padding: 8rem 0;
    background: linear-gradient(180deg, white, #f4f7ee);
    position: relative;
}

.treatment-process-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 100;
    color: var(--primary-color);
    margin-bottom: 6rem;
}

.treatment-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.treatment-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #b59d81, #d4b896);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-image {
    order: 1;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid #b59d81;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 500;
    color: #b59d81;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
}

.timeline-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.timeline-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.timeline-image:hover img {
    transform: scale(1.1);
}

/* Seção de Benefícios com Ícones Grandes */
.treatment-benefits-modern {
    padding: 8rem 0;
    background: #2c2c2a;
    position: relative;
    overflow: hidden;
}

.treatment-benefits-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(181, 157, 129, 0.08) 0%, transparent 70%);
}

.treatment-benefits-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 100;
    color: #f4f7ee;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.benefits-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.benefit-card-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    text-align: center;
}

.benefit-card-new:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-15px);
    border-color: #b59d81;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.benefit-card-new .benefit-icon-large {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: inline-block;
    transition: all 0.4s ease;
}

.benefit-card-new:hover .benefit-icon-large {
    transform: scale(1.2) rotate(10deg);
}

.benefit-card-new h3 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #f4f7ee;
    margin-bottom: 1.5rem;
}

.benefit-card-new p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(244, 247, 238, 0.8);
}

/* CTA Final com Imagem de Fundo */
.treatment-cta-final {
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.treatment-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.treatment-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.treatment-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 43, 41, 0.9), rgba(181, 157, 129, 0.7));
    z-index: 2;
}

.treatment-cta-content-final {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.treatment-cta-content-final h2 {
    font-size: 4rem;
    font-weight: 100;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.treatment-cta-content-final p {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* Responsividade */
@media (max-width: 968px) {
    .treatment-hero-title {
        font-size: 3.5rem;
    }
    
    .treatment-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .treatment-intro-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .treatment-intro-image img {
        height: 400px;
    }
    
    .treatment-intro-text h2 {
        font-size: 2.5rem;
    }
    
    .treatment-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(even) .timeline-image {
        order: initial;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .benefits-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .treatment-hero-full {
        min-height: 600px;
    }
    
    .treatment-hero-title {
        font-size: 2.5rem;
    }
    
    .treatment-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .treatment-hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .treatment-intro-visual {
        padding: 5rem 0;
    }
    
    .treatment-intro-text h2 {
        font-size: 2rem;
    }
    
    .treatment-process {
        padding: 5rem 0;
    }
    
    .treatment-process-title,
    .treatment-benefits-title {
        font-size: 2.5rem;
    }
    
    .timeline-content {
        padding: 2rem;
    }
    
    .timeline-image img {
        height: 250px;
    }
    
    .treatment-cta-content-final h2 {
        font-size: 2.5rem;
    }
    
    .treatment-cta-content-final p {
        font-size: 1.1rem;
    }
}

/* ========================================
   DESIGN MODERNO PARA PÁGINA DE DEPOIMENTOS
   Layout tipo masonry com cards flutuantes
   ======================================== */

/* Hero de depoimentos com overlay gradiente */
.depoimentos-page {
    background: linear-gradient(180deg, #f4f7ee 0%, #ffffff 100%);
    padding: 6rem 0;
}

/* Introdução com destaque */
.depoimentos-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
}

.depoimentos-intro::before {
    content: '"';
    position: absolute;
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12rem;
    font-family: Georgia, serif;
    color: rgba(181, 157, 129, 0.1);
    line-height: 1;
    z-index: 0;
}

.depoimentos-intro p {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

/* Grid de depoimentos tipo masonry */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 5rem 0;
}

/* Cards de depoimentos modernos */
.depoimento-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.depoimento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b59d81, #d4b896);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.depoimento-item:hover::before {
    transform: scaleX(1);
}

.depoimento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Estrelas com gradiente */
.depoimento-stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ffc107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Texto do depoimento */
.depoimento-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.depoimento-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    font-family: Georgia, serif;
    color: rgba(181, 157, 129, 0.3);
    line-height: 1;
}

/* Autor do depoimento */
.depoimento-autor {
    font-weight: 500;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

/* Data do depoimento */
.depoimento-data {
    font-size: 0.85rem;
    color: #999;
}

/* CTA de depoimentos */
.depoimentos-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #2c2c2a 0%, #3a3a38 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.depoimentos-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(181, 157, 129, 0.1) 0%, transparent 70%);
}

.depoimentos-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(181, 157, 129, 0.1) 0%, transparent 70%);
}

.depoimentos-cta h2 {
    color: #f4f7ee;
    font-size: 3rem;
    font-weight: 100;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.depoimentos-cta p {
    color: rgba(244, 247, 238, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.depoimentos-cta .btn-primary {
    position: relative;
    z-index: 1;
}

/* ========================================
   DESIGN MODERNO PARA PÁGINA DE CONTATO
   Layout split com animações
   ======================================== */

.contato-content {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f4f7ee 0%, #ffffff 100%);
}

/* Grid de contato moderno */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Informações de contato */
.contato-info h2 {
    font-size: 3rem;
    font-weight: 100;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.contato-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #b59d81, transparent);
}

.contato-info > p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Cards de contato modernos */
.contato-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-left: 4px solid transparent;
}

.contato-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #b59d81, #d4b896);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contato-item:hover::before {
    height: 100%;
}

.contato-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Ícone de contato */
.contato-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f4f7ee, #e8ebe0);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contato-item:hover .contato-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Detalhes de contato */
.contato-details h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contato-details p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Mapa vertical ao lado dos contatos */
.contato-map-side {
    background: white;
    padding: 2rem;
    border-radius: 30px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 120px;
    height: fit-content;
}

.contato-map-side h2 {
    font-size: 2rem;
    font-weight: 100;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.contato-map-side h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #b59d81, transparent);
}

.map-container-vertical {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container-vertical iframe {
    width: 100%;
    height: 100%;
}

/* Formulário de contato moderno (mantido para compatibilidade) */
.contato-form {
    background: white;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 120px;
}

.contato-form h2 {
    font-size: 2.5rem;
    font-weight: 100;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.contato-form h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #b59d81, transparent);
}

/* Grupos de formulário */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b59d81;
    background: white;
    box-shadow: 0 0 0 4px rgba(181, 157, 129, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Botão de envio */
.contato-form .btn-primary {
    width: 100%;
    padding: 1.3rem;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Mapa de localização */
.contato-map {
    margin-top: 8rem;
}

.contato-map h2 {
    font-size: 3rem;
    font-weight: 100;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.contato-map h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b59d81, transparent);
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    display: block;
    filter: grayscale(0.3);
    transition: filter 0.4s ease;
}

.map-container:hover iframe {
    filter: grayscale(0);
}

/* Responsividade para Depoimentos e Contato */
@media (max-width: 968px) {
    .depoimentos-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .depoimento-item {
        padding: 2rem;
    }
    
    .depoimentos-cta {
        padding: 4rem 2rem;
    }
    
    .depoimentos-cta h2 {
        font-size: 2.5rem;
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contato-form,
    .contato-faq,
    .contato-map-side {
        position: static;
        padding: 2.5rem;
    }
    
    .map-container-vertical {
        height: 400px;
    }
    
    .contato-info h2,
    .contato-form h2,
    .contato-map h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .depoimento-item {
        padding: 1.5rem;
    }
    
    .depoimentos-intro::before {
        font-size: 8rem;
        top: -3rem;
    }
    
    .depoimentos-cta {
        padding: 3rem 1.5rem;
        border-radius: 20px;
    }
    
    .depoimentos-cta h2 {
        font-size: 2rem;
    }
    
    .depoimentos-cta p {
        font-size: 1rem;
    }
    
    .contato-item {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .contato-icon {
        font-size: 2rem;
        min-width: 50px;
        height: 50px;
    }
    
    .contato-form,
    .contato-faq,
    .contato-map-side {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .map-container-vertical {
        height: 350px;
    }
    
    .contato-map-side h2 {
        font-size: 1.8rem;
    }
    
    .contato-info h2,
    .contato-form h2,
    .contato-map h2 {
        font-size: 2rem;
    }
    
    .map-container {
        border-radius: 20px;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

/* Animações de entrada para depoimentos */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.depoimento-item {
    animation: fadeInScale 0.6s ease-out;
}

.depoimento-item:nth-child(1) { animation-delay: 0.1s; }
.depoimento-item:nth-child(2) { animation-delay: 0.2s; }
.depoimento-item:nth-child(3) { animation-delay: 0.3s; }
.depoimento-item:nth-child(4) { animation-delay: 0.4s; }
.depoimento-item:nth-child(5) { animation-delay: 0.5s; }
.depoimento-item:nth-child(6) { animation-delay: 0.6s; }

/* Animações de entrada para contato */
.contato-item {
    animation: fadeInUp 0.6s ease-out;
}

.contato-item:nth-child(1) { animation-delay: 0.1s; }
.contato-item:nth-child(2) { animation-delay: 0.2s; }
.contato-item:nth-child(3) { animation-delay: 0.3s; }
.contato-item:nth-child(4) { animation-delay: 0.4s; }

/* ========================================
   SEÇÃO DE ESTATÍSTICAS
   ======================================== */

.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
    padding: 4rem 0;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b59d81, #d4b896);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 4rem;
    font-weight: 100;
    color: #b59d81;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #b59d81, #d4b896);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Responsividade das estatísticas */
@media (max-width: 968px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 3rem 0;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .stats-section {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
        margin-bottom: 4rem;
    }
    
    .stat-card {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
}

/* ========================================
   MELHORIAS ADICIONAIS PARA CONTATO
   ======================================== */

/* Botão WhatsApp destacado */
.contato-item .btn-secondary {
    background: #25D366;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    margin-top: 0.5rem;
}

.contato-item .btn-secondary::before {
    content: '💬';
    font-size: 1.2rem;
}

.contato-item .btn-secondary:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* Link de email estilizado */
.contato-item .btn-link {
    color: #b59d81;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.contato-item .btn-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.contato-item .btn-link:hover {
    color: #a08a6f;
    transform: translateX(5px);
}

.contato-item .btn-link:hover::after {
    transform: translateX(5px);
}

/* Indicador de formulário ativo */
.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label {
    color: #b59d81;
}

/* Placeholder estilizado */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
    font-style: italic;
}

/* Select customizado */
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b59d81' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    padding-right: 3rem;
}

/* Efeito de loading no botão de envio */
.btn-primary.loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Mensagem de sucesso/erro */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.95rem;
    display: none;
    animation: fadeInUp 0.4s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Ícones decorativos nos cards de contato */
.contato-item:nth-child(1) .contato-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.contato-item:nth-child(2) .contato-icon {
    background: linear-gradient(135deg, #EA4335, #C5221F);
    color: white;
}

.contato-item:nth-child(3) .contato-icon {
    background: linear-gradient(135deg, #4285F4, #1967D2);
    color: white;
}

.contato-item:nth-child(4) .contato-icon {
    background: linear-gradient(135deg, #b59d81, #d4b896);
    color: white;
}

/* Efeito de pulso nos ícones */
@keyframes pulse-icon {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(181, 157, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(181, 157, 129, 0);
    }
}

.contato-item:hover .contato-icon {
    animation: pulse-icon 1.5s infinite;
}

/* Decoração de fundo para seção de contato */
.contato-content::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(181, 157, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contato-content::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(181, 157, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contato-content {
    position: relative;
    overflow: hidden;
}

/* ========================================
   FAQ RÁPIDO NA PÁGINA DE CONTATO
   ======================================== */

.contact-faq {
    margin: 8rem 0;
    padding: 5rem 0;
    background: white;
    border-radius: 30px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.contact-faq h2 {
    font-size: 3rem;
    font-weight: 100;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.contact-faq h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b59d81, transparent);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 0 3rem;
}

.faq-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f4f7ee, #ffffff);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #b59d81, #d4b896);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.faq-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-icon {
    transform: scale(1.2) rotate(10deg);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Responsividade do FAQ */
@media (max-width: 968px) {
    .contact-faq {
        margin: 6rem 0;
        padding: 4rem 0;
        border-radius: 20px;
    }
    
    .contact-faq h2 {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
    }
    
    .faq-item {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .contact-faq {
        margin: 4rem 0;
        padding: 3rem 0;
    }
    
    .contact-faq h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .faq-grid {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
}

/* ========================================
   MELHORIAS FINAIS E POLIMENTO
   ======================================== */

/* Efeito de brilho nos cards ao passar o mouse */
.depoimento-item::after,
.stat-card::after,
.faq-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.depoimento-item:hover::after,
.stat-card:hover::after,
.faq-item:hover::after {
    opacity: 1;
    right: -200%;
}

/* Scroll suave para âncoras */
html {
    scroll-behavior: smooth;
}

/* Indicador de scroll */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #b59d81, #d4b896);
    z-index: 9999;
    transition: width 0.2s ease;
}



/* Transições suaves globais */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Otimização de performance */
.depoimento-item,
.stat-card,
.contato-item,
.faq-item {
    will-change: transform;
}

/* Prevenção de FOUC (Flash of Unstyled Content) */
body {
    opacity: 0;
    animation: fadeIn 0.3s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ========================================
   AJUSTES DE POSICIONAMENTO
   Breadcrumbs e Hero
   ======================================== */

/* Breadcrumbs - Ajuste de posição */
nav[aria-label="breadcrumb"] {
    margin-top: 104px !important;
}

/* Hero sections - Ajuste de posição */
.hero,
.hero-quem-sou,
.hero-treatment,
.treatment-hero-full {
    margin-top: 0px !important;
}
