/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #575250;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-subtitle {
    display: inline-block;
    color: #B89379;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: #575250;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-description {
    font-size: 1.1rem;
    color: #575250;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 245, 244, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(192, 187, 167, 0.8);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo h2 {
    color: #575250;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.nav-logo span {
    color: #B89379;
    font-size: 0.8rem;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #575250;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #B89379;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #B89379;
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: linear-gradient(135deg, #B89379, #575250);
    color: #F8F5F4;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 147, 121, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 147, 121, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #575250;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F8F5F4 0%, #c0bba7 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #B89379, #575250);
    color: #F8F5F4;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: #575250;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight {
    color: #B89379;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #B89379, #575250);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: #575250;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.benefit-item i {
    color: #B89379;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-particular {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: #575250;
    background: rgba(184, 147, 121, 0.1);
    border: 1px solid rgba(184, 147, 121, 0.4);
    border-radius: 50px;
    padding: 0.4rem 0.9rem;
    margin-top: 0.75rem;
}

.hero-particular i {
    color: #B89379;
    font-size: 0.78rem;
}

.btn-primary {
    background: linear-gradient(135deg, #B89379, #575250);
    color: #F8F5F4;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 147, 121, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(184, 147, 121, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #B89379;
    padding: 1rem 2rem;
    border: 2px solid #B89379;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #B89379;
    color: #F8F5F4;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #c0bba7, #575250);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(87, 82, 80, 0.15);
}

.image-placeholder i {
    font-size: 4rem;
    color: #F8F5F4;
    margin-bottom: 1rem;
}

.image-placeholder p {
    color: #F8F5F4;
    font-weight: 500;
}

.hero-video {
    width: 100%;
    max-width: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(87, 82, 80, 0.15);
    position: relative;
    background: linear-gradient(135deg, #c0bba7, #575250);
}

.hero-video wistia-player {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.hero-video wistia-player:not(:defined) {
    border-radius: 20px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-wave svg path {
    fill: #F8F5F4;
}

/* Wistia facade (hero video) */
.wistia-facade {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.wistia-facade img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button-facade {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.play-button-facade::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #ffffff;
}

/* Trust Indicators */
.trust-indicators {
    background: #F8F5F4;
    padding: 4rem 0;
    overflow: visible;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 2rem 1rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #F8F5F4, #c0bba7);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(87, 82, 80, 0.1);
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #B89379, #575250);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.trust-icon i {
    color: #F8F5F4;
    font-size: 1.5rem;
}

.trust-item h3 {
    font-size: 2rem;
    color: #575250;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.trust-item p {
    color: #575250;
    font-weight: 500;
}

/* Premium Evaluation Section */
.premium-evaluation {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F5F4 0%, #c0bba7 100%);
    position: relative;
}

.evaluation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.evaluation-card {
    background: linear-gradient(135deg, #F8F5F4, rgba(248, 245, 244, 0.9));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(87, 82, 80, 0.1);
}

.evaluation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #B89379, #575250);
}

.evaluation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(87, 82, 80, 0.2);
    border-color: #B89379;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B89379, #575250);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(184, 147, 121, 0.2), rgba(87, 82, 80, 0.1));
    border-radius: 50%;
    z-index: -1;
}

.card-icon i {
    color: #F8F5F4;
    font-size: 2rem;
}

.evaluation-card h3 {
    font-size: 1.3rem;
    color: #575250;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.evaluation-card p {
    color: #575250;
    line-height: 1.6;
    font-size: 0.95rem;
}

.value-highlight {
    background: linear-gradient(135deg, #575250, #B89379);
    border-radius: 25px;
    padding: 4rem 3rem;
    margin-top: 4rem;
    color: #F8F5F4;
    position: relative;
    overflow: hidden;
}

.value-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(248, 245, 244, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.highlight-content h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
    color: #F8F5F4;
}

.benefit-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.traditional, .premium-approach {
    background: rgba(248, 245, 244, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.traditional h4 {
    color: #c0bba7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.premium-approach h4 {
    color: #F8F5F4;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.traditional ul, .premium-approach ul {
    list-style: none;
}

.traditional li, .premium-approach li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.traditional li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #c0bba7;
    font-weight: bold;
}

.premium-approach li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F8F5F4;
    font-weight: bold;
}

.btn-premium {
    background: linear-gradient(135deg, #F8F5F4, #c0bba7);
    color: #575250;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(248, 245, 244, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(248, 245, 244, 0.4);
    background: linear-gradient(135deg, #F8F5F4, #F8F5F4);
}

.cta-center {
    text-align: center;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #c0bba7 0%, #F8F5F4 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #575250;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #F8F5F4;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(87, 82, 80, 0.15);
}

.credential-item i {
    color: #B89379;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.credential-item h4 {
    color: #575250;
    margin-bottom: 0.5rem;
}

.credential-item p {
    color: #575250;
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
}

.doctor-placeholder {
    width: 350px;
    height: 450px;
    background: linear-gradient(135deg, #c0bba7, #575250);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(87, 82, 80, 0.15);
}

.doctor-placeholder i {
    font-size: 5rem;
    color: #F8F5F4;
}

.doctor-photo {
    width: 350px;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(87, 82, 80, 0.15);
    position: relative;
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.doctor-photo:hover img {
    transform: scale(1.02);
}

/* Treatments Section */
.treatments {
    padding: 6rem 0;
    background: #F8F5F4;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Comfort Info */
.comfort-info {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(184, 147, 121, 0.1), rgba(87, 82, 80, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(184, 147, 121, 0.2);
}

.comfort-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    margin: 0.5rem;
    box-shadow: 0 3px 10px rgba(87, 82, 80, 0.1);
    transition: transform 0.3s ease;
}

.comfort-badge:hover {
    transform: translateY(-2px);
}

.comfort-badge i {
    color: #B89379;
    font-size: 1.2rem;
}

.comfort-badge span {
    color: #575250;
    font-weight: 600;
    font-size: 0.9rem;
}

.comfort-text {
    margin-top: 1.5rem;
    color: #575250;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.treatment-card {
    background: linear-gradient(135deg, #F8F5F4, #c0bba7);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(87, 82, 80, 0.1);
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(87, 82, 80, 0.15);
}

.treatment-card.featured {
    background: linear-gradient(135deg, #B89379, #575250);
    color: #F8F5F4;
    border: 2px solid #B89379;
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #B89379;
    color: #F8F5F4;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.treatment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B89379, #575250);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.treatment-card.featured .treatment-icon {
    background: #F8F5F4;
}

.treatment-icon i {
    color: #F8F5F4;
    font-size: 2rem;
}

.treatment-card.featured .treatment-icon i {
    color: #B89379;
}

.treatment-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #575250;
    font-family: 'Playfair Display', serif;
}

.treatment-card.featured h3 {
    color: #F8F5F4;
}

.treatment-card p {
    color: #575250;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.treatment-card.featured p {
    color: rgba(248, 245, 244, 0.9);
}

.treatment-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.treatment-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.treatment-benefits i {
    color: #B89379;
    font-size: 0.8rem;
}

.treatment-card.featured .treatment-benefits i {
    color: #F8F5F4;
}

.btn-treatment {
    background: linear-gradient(135deg, #B89379, #575250);
    color: #F8F5F4;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.treatment-card.featured .btn-treatment {
    background: #F8F5F4;
    color: #B89379;
}

.btn-treatment:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 147, 121, 0.3);
}

/* Results Section */
.results {
    padding: 6rem 0;
    background: linear-gradient(135deg, #c0bba7 0%, #F8F5F4 100%);
}

.results-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.result-item {
    background: #F8F5F4;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(87, 82, 80, 0.15);
    transition: transform 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
}

.before-after {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.before, .after {
    flex: 1;
    text-align: center;
}

.before span, .after span {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #575250;
}

.before span {
    color: #B89379;
}

.after span {
    color: #575250;
}

.before .image-placeholder, .after .image-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #c0bba7, #575250);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-image {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.before .image-placeholder i, .after .image-placeholder i {
    font-size: 2rem;
    color: #F8F5F4;
}

.result-item p {
    color: #575250;
    font-weight: 500;
}

/* Google Reviews/Testimonials */
.testimonials {
    padding: 6rem 0;
    background: #F8F5F4;
}

/* Reviews Tabs */
.reviews-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.reviews-tab {
    flex: 1;
    max-width: 300px;
    min-width: 200px;
    background: white;
    border: 2px solid #c0bba7;
    padding: 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.reviews-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #B89379, #575250);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.reviews-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(87, 82, 80, 0.15);
    border-color: #B89379;
}

.reviews-tab.active {
    background: linear-gradient(135deg, #B89379, #575250);
    border-color: #575250;
    color: white;
}

.reviews-tab i {
    font-size: 2rem;
    color: #B89379;
    transition: color 0.3s ease;
    z-index: 1;
}

.reviews-tab.active i {
    color: white;
}

.reviews-tab span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #575250;
    transition: color 0.3s ease;
    z-index: 1;
}

.reviews-tab.active span {
    color: white;
}

.tab-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: #575250;
    transition: color 0.3s ease;
    z-index: 1;
}

.reviews-tab.active .tab-rating {
    color: white;
}

.tab-score {
    font-weight: 700;
    font-size: 1.2rem;
}

.tab-rating i {
    font-size: 1rem;
}

.tab-review-count {
    font-size: 0.85rem;
    color: #575250;
    opacity: 0.8;
    transition: color 0.3s ease;
    z-index: 1;
    margin-top: 0.2rem;
}

.reviews-tab.active .tab-review-count {
    color: white;
    opacity: 0.9;
}

.tab-review-count span {
    font-weight: 600;
}

/* Reviews Content */
.reviews-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.reviews-content.active {
    display: block;
}

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

.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(248, 245, 244, 0.8), rgba(192, 187, 167, 0.3));
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(87, 82, 80, 0.1);
}

.rating-score {
    text-align: center;
}

.rating-score span {
    font-size: 3rem;
    font-weight: 700;
    color: #575250;
    font-family: 'Playfair Display', serif;
    display: block;
    line-height: 1;
}

.stars-overall {
    display: flex;
    gap: 0.2rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.stars-overall i {
    color: #B89379;
    font-size: 1.5rem;
}

.rating-info {
    text-align: center;
}

.rating-info p {
    color: #575250;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #575250;
    font-weight: 600;
}

.google-logo i {
    color: #4285f4;
    font-size: 1.5rem;
}

/* Loading State */
.reviews-loading {
    text-align: center;
    padding: 3rem;
    display: none;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #c0bba7;
    border-top: 4px solid #B89379;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.reviews-loading p {
    color: #575250;
    font-size: 1rem;
}

/* Reviews Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #F8F5F4, #c0bba7);
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(87, 82, 80, 0.1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(87, 82, 80, 0.15);
}

/* Review Source */
.review-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #575250;
    font-weight: 500;
}

.review-source i {
    color: #4285f4;
    font-size: 1rem;
}

.real-badge {
    background: #10b981;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: auto;
}

/* Stars */
.stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #B89379;
    font-size: 1.2rem;
}

.stars .far {
    color: #c0bba7;
}

/* Review Text */
.testimonial-card p {
    color: #575250;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #B89379, #575250);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar span {
    color: #F8F5F4;
    font-size: 1.2rem;
    font-weight: 600;
}

.author-info h4 {
    color: #575250;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.author-info span {
    color: #575250;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Reviews CTA */
.reviews-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-reviews {
    background: linear-gradient(135deg, #B89379, #575250);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 147, 121, 0.3);
}

.btn-reviews:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 147, 121, 0.4);
}

.btn-reviews-secondary {
    background: linear-gradient(135deg, #4285f4, #34a853);
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-reviews-secondary:hover {
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.btn-reviews i {
    font-size: 1.2rem;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .google-rating-summary {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .rating-score span {
        font-size: 2.5rem;
    }
    
    .stars-overall i {
        font-size: 1.3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .reviews-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-reviews {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .reviews-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .reviews-tab {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .google-rating-summary {
        padding: 1rem;
    }
    
    .rating-score span {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .author-avatar span {
        font-size: 1rem;
    }
}

/* Contact/Locations */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #c0bba7 0%, #F8F5F4 100%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.location-card {
    background: #F8F5F4;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(87, 82, 80, 0.15);
    transition: transform 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-header {
    margin-bottom: 2rem;
}

.location-header i {
    font-size: 3rem;
    color: #B89379;
    margin-bottom: 1rem;
}

.location-header h3 {
    font-size: 1.5rem;
    color: #575250;
    font-family: 'Playfair Display', serif;
}

.location-info {
    margin-bottom: 2rem;
}

.location-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #575250;
    justify-content: center;
}

.location-info i {
    color: #B89379;
    width: 20px;
}

.btn-location {
    background: linear-gradient(135deg, #B89379, #575250);
    color: #F8F5F4;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-location:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 147, 121, 0.3);
}

/* Vascular Quiz Styles */
.vascular-quiz {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F8F5F4 0%, #c0bba7 100%);
    position: relative;
}

.quiz-header {
    text-align: center;
    margin-bottom: 4rem;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: #F8F5F4;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(87, 82, 80, 0.15);
    overflow: hidden;
}

.quiz-step {
    display: none;
    padding: 3rem;
}

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

/* Progress Bar */
.progress-bar {
    background: #c0bba7;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(135deg, #B89379, #575250);
    height: 8px;
    border-radius: 4px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(248, 245, 244, 0.3), transparent);
    animation: progressShine 2s infinite;
}

.progress-text {
    display: block;
    text-align: center;
    color: #575250;
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Questions */
.question-container {
    position: relative;
    min-height: 300px;
}

.question {
    display: none;
    animation: slideIn 0.5s ease;
}

.question.active {
    display: block;
}

.question h3 {
    font-size: 1.4rem;
    color: #575250;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option {
    background: linear-gradient(135deg, #F8F5F4, rgba(192, 187, 167, 0.3));
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 147, 121, 0.1), transparent);
    transition: left 0.5s ease;
}

.option:hover {
    border-color: #B89379;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 147, 121, 0.2);
}

.option:hover::before {
    left: 100%;
}

.option input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #c0bba7;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.option input[type="radio"]:checked {
    border-color: #B89379;
    background: #B89379;
}

.option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #F8F5F4;
    border-radius: 50%;
}

.option input[type="radio"]:checked + .option-text {
    color: #575250;
    font-weight: 600;
}

.option-text {
    color: #575250;
    font-size: 1rem;
    line-height: 1.5;
}

/* Navigation */
.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #c0bba7;
}

.btn-nav {
    background: linear-gradient(135deg, #B89379, #575250);
    color: #F8F5F4;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 147, 121, 0.3);
}

.btn-nav:disabled {
    background: #c0bba7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Contact Form Step */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    color: #575250;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.form-header p {
    color: #575250;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form {
    max-width: 400px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    color: #575250;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #c0bba7;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #F8F5F4;
    color: #575250;
}

.contact-form input:focus {
    outline: none;
    border-color: #B89379;
    box-shadow: 0 0 0 3px rgba(184, 147, 121, 0.1);
}

.btn-result {
    background: linear-gradient(135deg, #B89379, #575250);
    color: #F8F5F4;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-result:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 147, 121, 0.4);
}

/* Results Step */
.result-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.result-header {
    margin-bottom: 3rem;
}

.result-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.result-icon i {
    color: #F8F5F4;
}

#result-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: #575250;
}

.result-score {
    margin-bottom: 2rem;
}

.result-score span {
    font-size: 4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #575250;
    display: block;
    line-height: 1;
}

.result-score small {
    color: #575250;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.result-content {
    background: linear-gradient(135deg, rgba(248, 245, 244, 0.8), rgba(192, 187, 167, 0.3));
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.result-text p {
    color: #575250;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
}

.result-recommendation {
    background: linear-gradient(135deg, #575250, #B89379);
    color: #F8F5F4;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.result-recommendation h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.result-recommendation p {
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.result-cta {
    margin-top: 2rem;
}

.btn-whatsapp-result {
    background: linear-gradient(135deg, #B89379, #575250);
    color: #F8F5F4 !important;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(184, 147, 121, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.btn-whatsapp-result:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 147, 121, 0.4);
    color: #F8F5F4 !important;
}

.result-disclaimer {
    margin-top: 1.5rem;
    color: #575250;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Risk Level Styling */
.risk-low .result-icon {
    background: linear-gradient(135deg, #B89379, #575250);
}

.risk-medium .result-icon {
    background: linear-gradient(135deg, #B89379, #575250);
}

.risk-high .result-icon {
    background: linear-gradient(135deg, #B89379, #575250);
    animation: pulse-warning 2s infinite;
}

@keyframes pulse-warning {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(184, 147, 121, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(184, 147, 121, 0);
    }
}

/* Responsive Design for Quiz */
@media (max-width: 768px) {
    .quiz-step {
        padding: 2rem 1.5rem;
    }
    
    .question h3 {
        font-size: 1.2rem;
    }
    
    .option {
        padding: 1rem;
    }
    
    .option-text {
        font-size: 0.9rem;
    }
    
    .quiz-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-nav {
        width: 100%;
        justify-content: center;
    }
    
    .result-score span {
        font-size: 3rem;
    }
    
    .result-content {
        padding: 1.5rem;
    }
    
    .btn-whatsapp-result {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .quiz-container {
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .quiz-step {
        padding: 1.5rem 1rem;
    }
    
    .question h3 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .options {
        gap: 0.8rem;
    }
    
    .option {
        padding: 0.8rem;
        border-radius: 10px;
    }
    
    .result-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .result-score span {
        font-size: 2.5rem;
    }
    
    #result-title {
        font-size: 1.4rem;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Appointment Form */
.appointment {
    padding: 6rem 0;
    background: #F8F5F4;
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.appointment-benefits {
    margin-top: 2rem;
}

.appointment-benefits .benefit-item {
    margin-bottom: 1rem;
}

.appointment-form {
    background: linear-gradient(135deg, #c0bba7, #F8F5F4);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(87, 82, 80, 0.15);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #575250;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #c0bba7;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #F8F5F4;
    color: #575250;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B89379;
}

.btn-submit {
    background: linear-gradient(135deg, #B89379, #575250);
    color: #F8F5F4;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 147, 121, 0.4);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #575250;
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #575250, #B89379);
    color: #F8F5F4;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #F8F5F4;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.footer-section p {
    color: rgba(248, 245, 244, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #B89379, #575250);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F8F5F4;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(248, 245, 244, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #F8F5F4;
}

.footer-location {
    margin-bottom: 2rem;
}

.footer-location p {
    margin-bottom: 0.3rem;
}

.btn-footer {
    background: linear-gradient(135deg, #F8F5F4, #c0bba7);
    color: #575250;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
}

.btn-footer:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(248, 245, 244, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(248, 245, 244, 0.8);
}

.footer-legal {
    margin-top: 1rem;
}

.footer-legal a {
    color: rgba(248, 245, 244, 0.8);
    text-decoration: none;
    margin: 0 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #B89379;
}

/* Privacy Policy & Terms Pages */
.privacy-policy,
.terms-of-use {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #F8F5F4 0%, #F5F2F0 100%);
}

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.policy-header h1 {
    color: #575250;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.last-updated {
    color: #B89379;
    font-size: 1.1rem;
    font-weight: 500;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(87, 82, 80, 0.1);
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(184, 147, 121, 0.2);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    color: #575250;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.policy-section h3 {
    color: #B89379;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 1.5rem 0 0.5rem 0;
}

.policy-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: rgba(184, 147, 121, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #575250;
}

.policy-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-back {
    background: linear-gradient(135deg, #B89379, #575250);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 147, 121, 0.3);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #B89379;
    border-radius: 50%;
    color: #F8F5F4;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(184, 147, 121, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(184, 147, 121, 0.4);
}

.whatsapp-float i {
    font-size: 1.8rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(184, 147, 121, 0.3);
    }
    50% {
        box-shadow: 0 4px 15px rgba(184, 147, 121, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(184, 147, 121, 0.3);
    }
}

/* Responsive Design for Premium Section */
@media (max-width: 768px) {
    .evaluation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .evaluation-card {
        padding: 2rem;
    }
    
    .benefit-compare {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-highlight {
        padding: 2.5rem 1.5rem;
        margin-top: 3rem;
    }
    
    .highlight-content h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .btn-premium {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .evaluation-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .evaluation-card h3 {
        font-size: 1.1rem;
    }
    
    .value-highlight {
        padding: 2rem 1rem;
    }
    
    .btn-premium {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .doctor-photo {
        width: 280px;
        height: 360px;
        margin: 0 auto;
    }
    
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-video {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .before-after {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .trust-item {
        padding: 1.5rem 1rem;
    }
    
    .trust-item h3 {
        font-size: 1.8rem;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
    }
    
    .comfort-info {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .comfort-badge {
        display: block;
        margin: 0.5rem auto;
        text-align: center;
        max-width: 200px;
    }
    
    .comfort-text {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem 15px;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-item {
        padding: 1.5rem 1rem;
    }
    
    .trust-item h3 {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .appointment-form {
        padding: 2rem;
    }
    
    .doctor-photo {
        width: 250px;
        height: 320px;
    }
}

/* Smooth animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
        background: linear-gradient(90deg, transparent, rgba(192, 187, 167, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ============================================
   ESTILOS DA PÁGINA AVALIACAO.HTML
   ============================================ */

/* Badge de Localizações */
.badge-locations {
    background: linear-gradient(135deg, rgba(184, 147, 121, 0.1), rgba(87, 82, 80, 0.05));
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #575250;
    font-weight: 500;
}

.badge-locations i {
    color: #B89379;
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.problem-card {
    background: #F8F5F4;
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid #B89379;
    box-shadow: 0 5px 15px rgba(87, 82, 80, 0.1);
}

.problem-card.serious {
    border-left-color: #B89379;
}

.problem-card h3 {
    color: #575250;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.problem-card ul {
    list-style: none;
    padding: 0;
}

.problem-card li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #575250;
}

.problem-card li::before {
    content: "✓";
    color: #B89379;
    font-weight: bold;
    flex-shrink: 0;
}

.filter-message {
    background: linear-gradient(135deg, #575250, #B89379);
    color: #F8F5F4;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
    font-style: italic;
}

/* Timeline */
.timeline {
    max-width: 900px;
    margin: 3rem auto;
}

.timeline-item {
    background: #F8F5F4;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border-left: 4px solid #B89379;
    box-shadow: 0 5px 15px rgba(87, 82, 80, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(87, 82, 80, 0.15);
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #B89379, #575250);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F8F5F4;
    font-size: 1.2rem;
}

.timeline-time {
    color: #B89379;
    font-weight: 600;
    font-size: 1.1rem;
}

.timeline-item h3 {
    color: #575250;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.timeline-item p {
    color: #575250;
    line-height: 1.6;
}

.outcome-box {
    background: linear-gradient(135deg, rgba(184, 147, 121, 0.1), rgba(87, 82, 80, 0.05));
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.outcome-box h3 {
    color: #575250;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.outcome-box ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.outcome-box li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #575250;
    font-size: 1.05rem;
}

.outcome-box li::before {
    content: "✓";
    color: #B89379;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Comparison Table */
.comparison-table {
    max-width: 1000px;
    margin: 3rem auto;
    background: #F8F5F4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(87, 82, 80, 0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.comparison-table th:first-child {
    background: #c0bba7;
    color: #575250;
}

.comparison-table th:last-child {
    background: linear-gradient(135deg, #B89379, #575250);
    color: #F8F5F4;
}

.comparison-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #c0bba7;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    background: rgba(192, 187, 167, 0.2);
    color: #575250;
}

.comparison-table td:last-child {
    background: rgba(184, 147, 121, 0.1);
    color: #575250;
}

.comparison-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.comparison-icon.negative {
    color: #c0bba7;
}

.comparison-icon.positive {
    color: #B89379;
}

/* Pricing Box */
.pricing-box {
    max-width: 800px;
    margin: 3rem auto;
    background: linear-gradient(135deg, #F8F5F4, rgba(192, 187, 167, 0.3));
    border: 3px solid #B89379;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(87, 82, 80, 0.15);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #B89379, #575250);
    color: #F8F5F4;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-value {
    font-size: 3rem;
    color: #575250;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: #575250;
    font-size: 1.1rem;
}

.pricing-includes {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.pricing-includes h4 {
    color: #575250;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.pricing-includes ul {
    list-style: none;
}

.pricing-includes li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #575250;
}

.pricing-includes li::before {
    content: "✅";
    flex-shrink: 0;
}

.pricing-payment {
    text-align: center;
    padding: 1.5rem;
    background: rgba(184, 147, 121, 0.1);
    border-radius: 10px;
    margin: 2rem 0;
}

.pricing-payment h4 {
    color: #575250;
    margin-bottom: 0.8rem;
}

.pricing-payment p {
    color: #575250;
}

.pricing-treatment-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px dashed #B89379;
}

.pricing-treatment-info h4 {
    color: #575250;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-range {
    text-align: center;
    font-size: 1.5rem;
    color: #B89379;
    font-weight: 700;
    margin: 1rem 0;
}

.pricing-important {
    background: linear-gradient(135deg, #575250, #B89379);
    color: #F8F5F4;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.pricing-important h4 {
    color: #F8F5F4;
    margin-bottom: 0.8rem;
}

.testimonial-investment {
    background: rgba(184, 147, 121, 0.2);
    padding: 0.8rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #575250;
    font-style: italic;
}

/* FAQ Container */
.faq-container {
    max-width: 900px;
    margin: 3rem auto;
}

.faq-item {
    background: #F8F5F4;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(87, 82, 80, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(87, 82, 80, 0.15);
}

.faq-question {
    color: #575250;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(184, 147, 121, 0.1);
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #B89379;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    color: #575250;
    line-height: 1.7;
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem 2rem;
    max-height: 500px;
}

/* Urgency Box */
.urgency-box {
    max-width: 800px;
    margin: 3rem auto;
    background: linear-gradient(135deg, rgba(184, 147, 121, 0.1), rgba(87, 82, 80, 0.05));
    border: 2px solid #B89379;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
}

.urgency-box h3 {
    color: #575250;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.urgency-box p {
    color: #575250;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* CTA Final */
.cta-final {
    max-width: 900px;
    margin: 4rem auto;
    background: linear-gradient(135deg, #B89379, #575250);
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    color: #F8F5F4;
    box-shadow: 0 20px 50px rgba(87, 82, 80, 0.2);
}

.cta-final h2 {
    color: #F8F5F4;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-final p {
    color: rgba(248, 245, 244, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.btn-whatsapp-large {
    background: #25D366;
    color: white !important;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background: #22C55E;
}

.cta-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(248, 245, 244, 0.3);
}

.cta-info p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.cta-info .investment-reminder {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(248, 245, 244, 0.9);
    font-size: 0.95rem;
}

/* Differentials Grid */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.differential-card {
    background: linear-gradient(135deg, #F8F5F4, rgba(192, 187, 167, 0.3));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(87, 82, 80, 0.1);
    transition: all 0.3s ease;
}

.differential-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(87, 82, 80, 0.15);
}

.differential-icon {
    font-size: 3rem;
    color: #B89379;
    margin-bottom: 1rem;
}

.differential-card h3 {
    color: #575250;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.differential-card p {
    color: #575250;
    line-height: 1.6;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    color: #B89379;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: #575250;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Contact Modal */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(87, 82, 80, 0.9);
    animation: fadeIn 0.3s ease;
}

.contact-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #575250;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-modal-close:hover {
    background: rgba(184, 147, 121, 0.1);
    transform: rotate(90deg);
}

.contact-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-modal-header h3 {
    color: #575250;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-modal-header p {
    color: #B89379;
    font-size: 1rem;
}

.contact-form-group {
    margin-bottom: 1.5rem;
}

.contact-form-group label {
    display: block;
    color: #575250;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #c0bba7;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form-group input:focus {
    outline: none;
    border-color: #B89379;
    box-shadow: 0 0 0 3px rgba(184, 147, 121, 0.1);
}

.contact-form-group input.error {
    border-color: #e74c3c;
}

.contact-form-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: none;
}

.contact-form-error.show {
    display: block;
}

.contact-form-submit {
    width: 100%;
    background: #25D366;
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.contact-form-submit:hover {
    background: #22C55E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.contact-form-submit:active {
    transform: translateY(0);
}

.contact-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-form-submit .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.contact-form-submit.loading .spinner {
    display: block;
}

.contact-form-submit.loading i {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #575250, #B89379);
    color: #F8F5F4;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    animation: slideUpFromBottom 0.5s ease;
}

.cookie-consent.show {
    display: block;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #F8F5F4;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-consent-btn-accept {
    background: #25D366;
    color: white;
}

.cookie-consent-btn-accept:hover {
    background: #22C55E;
    transform: translateY(-2px);
}

.cookie-consent-btn-decline {
    background: transparent;
    color: #F8F5F4;
    border: 2px solid #F8F5F4;
    display: none; /* Ocultar botão Recusar */
}

.cookie-consent-btn-decline:hover {
    background: rgba(248, 245, 244, 0.1);
}

@keyframes slideUpFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Design para Avaliacao.html */
@media (max-width: 768px) {
    .comparison-table {
        overflow-x: auto;
    }
    
    .cta-final {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-final h2 {
        font-size: 1.8rem;
    }
    
    .btn-whatsapp-large {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .pricing-value {
        font-size: 2.5rem;
    }
    
    .timeline-item {
        padding: 1.5rem;
    }
    
    .contact-modal-content {
        padding: 2rem 1.5rem;
    }
    
    .contact-modal-header h3 {
        font-size: 1.5rem;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-consent-btn {
        flex: 1;
        min-width: 140px;
    }
}
