:root {
    /* Premium Color Palette */
    --primary-color: #D4B0A0; /* Nude quente */
    --primary-dark: #B08D7D;
    --secondary-color: #F5EFEB; /* Off-white background */
    --accent-color: #C5A065; /* Dourado suave */
    --text-color: #5A524D; /* Marrom acinzentado escuro */
    --text-light: #8C8279;
    --white: #FFFFFF;
    --dark-bg: #2C2623; /* Dark wood tone */
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius-lg: 30px;
    --border-radius-md: 15px;
    
    /* Shadows */
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Global Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--dark-bg);
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.section-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 3px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--dark-bg);
    color: var(--white);
    border: 1px solid var(--dark-bg);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--dark-bg);
    color: var(--dark-bg);
}

.btn-outline:hover {
    background-color: var(--dark-bg);
    color: var(--white);
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.85rem;
}

.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(245, 239, 235, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--dark-bg);
    letter-spacing: -0.5px;
}

.logo .subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-top: -5px;
}

.header-logo-img {
    max-height: 60px;
    width: auto;
    display: block;
}

.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

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

.desktop-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-bg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    padding: 30px;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-size: 1.1rem;
    color: var(--dark-bg);
}

.overlay-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay-mobile.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Premium */
.hero-premium {
    padding-top: calc(var(--header-height) + 50px);
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 50px;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 500px;
}

.hero-location {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-bg);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.microcopy {
    font-size: 0.8rem;
    color: var(--text-light);
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg) 0 var(--border-radius-lg) var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.img-placeholder {
    width: 100%;
    padding-bottom: 125%; /* Aspect ratio 4:5 */
    background-size: cover;
    background-position: center;
    transition: transform 1s ease;
}

.image-wrapper:hover .img-placeholder {
    transform: scale(1.05);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-light);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
    40% {transform: translateY(-10px) translateX(-50%);}
    60% {transform: translateY(-5px) translateX(-50%);}
}

/* About Clinic - Organic */
.about-clinic-premium {
    padding: 100px 0;
    background: var(--white);
}

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

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.clinic-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: var(--border-radius-md);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: block;
}

.feature-item span {
    font-size: 0.85rem;
    font-weight: 500;
}

.about-visuals {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.main-visual {
    width: 80%;
    height: 85%;
    top: 0;
    right: 0;
    z-index: 1;
}

.secondary-visual {
    width: 50%;
    height: 50%;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 5px solid var(--white);
}

/* Dra Profile - Inverted */
.dra-profile-section {
    padding: 100px 0;
}

.profile-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.profile-image-container {
    position: relative;
}

.profile-image {
    width: 100%;
    padding-bottom: 130%;
    background-size: cover;
    background-position: center top;
    border-radius: 100px 100px 0 0; /* Arch shape */
    box-shadow: var(--shadow-md);
}

.profile-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.profile-intro {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.credentials-box {
    margin-top: 30px;
    padding: 20px;
    border-left: 3px solid var(--accent-color);
    background: rgba(197, 160, 101, 0.1);
    display: flex;
    gap: 30px;
}

/* Treatments Premium */
.treatments-premium {
    padding: 100px 0;
    background: var(--white);
}

.section-header-premium {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-premium h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.highlight-treatment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: var(--shadow-md);
}

.highlight-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-new {
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 15px;
}

.highlight-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.treatment-benefits li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.treatment-benefits i {
    color: var(--accent-color);
    margin-right: 10px;
}

.highlight-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

/* Ensure cards have equal height */
.treatments-swiper .swiper-slide {
    height: auto; /* Permite que o slide se ajuste à altura do card */
    display: flex; /* Garante que o conteúdo (card) preencha a altura */
}

.treatment-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius-md);
    width: 100%; /* Ocupa toda a largura do slide */
    height: 100%; /* Força todos os cards a terem a mesma altura */
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Alinha conteúdo ao topo */
}

.treatment-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.treatment-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.treatment-card:hover {
    background: var(--dark-bg);
    color: var(--white);
    transform: translateY(-10px);
}

.treatment-card:hover h4, 
.treatment-card:hover p,
.treatment-card:hover .card-icon i {
    color: var(--white);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.treatments-swiper {
    padding: 20px 10px 60px 10px !important; /* Padding ajustado */
}

/* Custom Navigation for Treatments */
.treatments-swiper .swiper-button-next,
.treatments-swiper .swiper-button-prev {
    color: var(--primary-dark);
    background-color: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treatments-swiper .swiper-button-next:after,
.treatments-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.treatments-swiper .swiper-button-next {
    right: 10px;
}

.treatments-swiper .swiper-button-prev {
    left: 10px;
}

.treatments-swiper .swiper-button-next:hover,
.treatments-swiper .swiper-button-prev:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-50%) scale(1.1); /* Mantém centralizado verticalmente ao escalar */
}

.exclusive-protocols {
    margin-top: 80px;
}

.protocols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Story Layout */
.protocols-grid.stories-layout {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.story-card {
    position: relative;
    width: 320px;
    height: 568px; /* Proporção 9:16 aproximada */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
    cursor: pointer;
}

.story-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.story-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.story-card:hover .story-image {
    transform: scale(1.1);
}

.story-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
    z-index: 2;
}

.story-tag {
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.story-content h4 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--white);
    line-height: 1.2;
    font-family: 'Cormorant Garamond', serif;
}

.story-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.4;
}

.btn-story {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-story:hover {
    background: var(--white);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-story i {
    font-size: 0.8rem;
}

/* Responsividade para Stories */
@media (max-width: 768px) {
    .protocols-grid.stories-layout {
        flex-direction: column;
        align-items: center;
    }
    
    .story-card {
        width: 100%;
        max-width: 340px;
        height: 500px;
    }
}

/* Health Section (Dr. Spencer) */
.health-section {
    padding: 100px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.health-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.health-image-frame {
    border: 12px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.05);
}

.health-image-frame img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: block;
}

.health-section h2, .health-section h3, .health-section .section-tag {
    color: var(--white);
}

.health-section .section-tag {
    border-color: var(--accent-color);
}

.health-intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.health-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.health-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.health-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.health-item h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--white);
}

.health-item small {
    color: rgba(255,255,255,0.6);
}

.btn-outline-dark {
    border: 1px solid var(--white);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    display: inline-block;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* Gallery Full Width */
.clinic-gallery-section {
    padding: 50px 0;
}

.gallery-swiper {
    width: 100%;
    padding-bottom: 50px;
    padding-top: 20px;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 9 / 16;
    height: auto;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

/* Comparison Slider */
.results-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.comparison-slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    background-color: var(--white);
    padding: 20px;
}

.comparison-labels {
    display: flex;
    justify-content: space-between;
    padding: 10px 0 0;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

img-comparison-slider {
    --divider-width: 2px;
    --divider-color: var(--white);
    --handle-size: 40px;
    --handle-background: var(--accent-color);
    outline: none;
    border-radius: 10px;
    overflow: hidden;
}

.disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.7;
}

/* Comparison Swiper Navigation */
.comparison-swiper {
    padding-bottom: 50px;
}

.comparison-swiper .swiper-button-next,
.comparison-swiper .swiper-button-prev {
    color: var(--primary-dark);
    background-color: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.comparison-swiper .swiper-button-next:after,
.comparison-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.comparison-swiper .swiper-button-next:hover,
.comparison-swiper .swiper-button-prev:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: scale(1.1);
}

/* Testimonials */
.testimonials-premium {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-img {
    width: 100%;
    max-width: 800px; /* Aumentado para melhor leitura */
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: block;
    margin: 0 auto;
    background-color: transparent;
}

.testimonials-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    padding-bottom: 40px; /* Space for pagination */
}

/* Custom Swiper Navigation */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    color: var(--primary-dark);
    background-color: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonials-swiper .swiper-button-next:after,
.testimonials-swiper .swiper-button-prev:after {
    font-size: 1.2rem; /* Menor e mais delicado */
    font-weight: bold;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: scale(1.1);
}

/* Interactive Form */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.interactive-form {
    margin-top: 40px;
    min-height: 300px;
    position: relative;
}

.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
    font-weight: 500;
}

.form-step input[type="text"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.form-step input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.option-card {
    border: 2px solid var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.option-card:hover, .option-card.selected {
    border-color: var(--primary-color);
    background: var(--secondary-color);
}

.option-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: block;
}

.success-message {
    text-align: center;
}

.success-message i {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 20px;
}

.progress-bar {
    margin-top: 40px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    width: 33%;
    transition: width 0.3s ease;
}

/* Addresses Section */
.addresses-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.addresses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.address-card {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.address-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.address-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}

.address-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.address-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1rem;
}

.btn-map {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-dark);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-map:hover {
    background: var(--primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .addresses-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-col h4 {
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Floating WhatsApp */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
}

.floating-whatsapp-btn .tooltip {
    position: absolute;
    right: 70px;
    background-color: #fff;
    color: #333;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.floating-whatsapp-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-text h1 { font-size: 3rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero-image { display: none; } /* Simplify for tablet if needed, or stack */
    
    .about-grid, .profile-grid, .health-grid {
        grid-template-columns: 1fr;
    }
    
    .about-visuals { display: none; }
    
    .highlight-treatment { grid-template-columns: 1fr; }
    .highlight-image { min-height: 250px; }
    
    .desktop-nav { display: none; }
    .mobile-menu-toggle { display: block; }
    
    .footer-container { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    :root { --header-height: 70px; }
    
    .hero-premium { padding-top: 100px; text-align: center; }
    .hero-actions { align-items: center; }
    .hero-text h1 { font-size: 2.5rem; }
    .hero-subtitle { margin: 0 auto 20px; }
    .hero-location { justify-content: center; }
    
    .about-content h2, .profile-content h3, .section-header-premium h2 {
        font-size: 2rem;
    }
    
    .form-wrapper { padding: 30px; }
    .options-grid { grid-template-columns: 1fr; }
    
    .clinic-features { grid-template-columns: 1fr; }
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.team-section .section-header-premium h2,
.team-section .section-header-premium p {
    color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 100%;
    padding-bottom: 120%; /* Portrait aspect ratio */
    background-size: cover;
    background-position: center top;
}

.team-content {
    padding: 30px;
    text-align: center;
}

.team-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark-bg);
}

.team-content .crm {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.team-content .role {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team-content .specialties {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
}

/* Beauty Combo Section */
.beauty-combo-section {
    background: var(--dark-bg);
    color: var(--white);
    padding: 80px 40px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.beauty-combo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.beauty-combo-content h2,
.beauty-combo-content .section-tag {
    color: var(--white);
}

.beauty-combo-content .section-tag {
    border-color: var(--accent-color);
}

.beauty-combo-content p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.video-frame-vertical {
    position: relative;
    width: 100%;
    max-width: 350px; /* Tamanho típico de celular */
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 8px solid rgba(255, 255, 255, 0.1);
}

.vertical-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .beauty-combo-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .beauty-combo-content {
        margin-bottom: 40px;
    }
}
