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

html {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary: #E8215F;
    --primary-dark: #C41850;
    --primary-light: #FF5B8F;
    --foreground: #1A1A2E;
    --foreground-secondary: #6B7280;
    --background: #FFFFFF;
    --background-soft: #FFF7FA;
    --background-muted: #F9FAFB;
    --accent-rose: #FDE8F0;
    --border: #F0F0F0;
    --border-soft: #F8E1EC;
    --radius: 0.75rem;
    --radius-lg: 1.25rem;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 16px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 10px 32px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--foreground);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-small {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    min-height: 44px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border-color: rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.btn-lg {
    padding: 1rem 2.5rem;
    min-height: 56px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

.logo {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.logo img {
    height: 56px;
    width: auto;
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

.desktop-nav button {
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground-secondary);
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.desktop-nav button:hover {
    color: var(--foreground);
    background: rgba(0, 0, 0, 0.03);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.desktop-only {
    display: none;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--foreground);
    transition: all 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav button,
.mobile-nav a {
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground-secondary);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
}

.mobile-nav button:hover {
    color: var(--foreground);
    background: rgba(0, 0, 0, 0.03);
}

.mobile-nav .btn {
    margin-top: 0.5rem;
}

/* Hero */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(160deg, #FFFFFF 60%, #FFF2F7 100%);
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--foreground-secondary);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FDE8F0;
    border: 1px solid #F8C8DC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
}

.badge-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground-secondary);
}

.hero-image {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(243, 46, 113, 0.2);
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--foreground-secondary);
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    position: relative;
    padding: 2rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #F8C8DC;
}

.service-glow {
    display: none;
}

.service-card:hover .service-glow {
    display: none;
}

.service-image {
    aspect-ratio: 16/9;
    background: var(--background-muted);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
}

.service-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
}

.service-letter {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), rgba(243, 46, 113, 0.6));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-card > p {
    color: var(--foreground-secondary);
    margin-bottom: 1rem;
}

.service-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-benefits li {
    padding: 0.5rem 0;
    color: var(--foreground-secondary);
    font-size: 0.875rem;
}

.service-info {
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 0.875rem;
    color: var(--foreground-secondary);
    margin-bottom: 0.25rem;
}

.service-price {
    font-weight: 600;
    color: var(--foreground) !important;
}

.service-info-box {
    padding: 1.5rem;
    background: var(--background-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.service-info-box h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.service-info-box ul {
    list-style: none;
}

.service-info-box li {
    padding: 0.5rem 0;
    color: var(--foreground-secondary);
    font-size: 0.875rem;
}

/* Experience Section */
.experience {
    padding: 100px 0;
    background: var(--background-muted);
}

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

.experience-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.experience-text > p {
    font-size: 1.125rem;
    color: var(--foreground-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.experience-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.experience-highlights li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #FDE8F0;
    color: var(--primary);
    border-radius: 12px;
    font-size: 1.5rem;
}

.experience-highlights strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.experience-highlights p {
    font-size: 0.9rem;
    color: var(--foreground-secondary);
    margin: 0;
}

/* Carousel */
.experience-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(243, 46, 113, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(243, 46, 113, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background: var(--primary-light);
}

.dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-text h2 {
        font-size: 2rem;
    }

    .carousel-slide img {
        height: 350px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

/* Gallery */
.gallery {
    padding: 128px 0;
    background: var(--background-muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: translateY(-4px);
}

.gallery-glow {
    position: absolute;
    inset: -2px;
    display: none;
    transition: opacity 0.3s;
    z-index: -1;
}

.gallery-item:hover .gallery-glow {
    opacity: 0.4;
}

.gallery-item > div:last-of-type {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 46, 113, 0.2), rgba(243, 46, 113, 0.1), var(--background));
    border-radius: var(--radius);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
}

.disclaimer {
    padding: 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    text-align: center;
}

.disclaimer p {
    font-size: 0.875rem;
    color: var(--foreground-secondary);
}

/* Differentials */
.differentials {
    padding: 100px 0;
    background: var(--background-soft);
}

.differentials-grid {
    display: grid;
    gap: 2rem;
}

.differential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: all 0.3s;
}

.differential-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.differential-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #FDE8F0;
    border: 1px solid #F8C8DC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.differential-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.differential-item p {
    font-size: 0.875rem;
    color: var(--foreground-secondary);
}

/* Protocol Section */
.protocol {
    padding: 100px 0;
    background: var(--background-muted);
}

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

.protocol-item {
    padding: 2rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s;
}

.protocol-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #F8C8DC;
}

.protocol-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: #FDE8F0;
    border: 2px solid #F8C8DC;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.protocol-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.protocol-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--foreground-secondary);
}

/* Location Premium Section */
.location-premium {
    padding: 128px 0;
    background: var(--background);
}

.premium-content {
    max-width: 900px;
    margin: 2rem auto 0;
}

.premium-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--foreground-secondary);
    margin-bottom: 2rem;
    text-align: center;
}

.premium-text h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary);
}

.premium-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--background-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: rgba(243, 46, 113, 0.3);
    box-shadow: 0 8px 24px rgba(243, 46, 113, 0.08);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary), #FF6B9D);
    color: white;
    border-radius: 12px;
    font-size: 1.75rem;
}

.feature-item strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--foreground-secondary);
    margin: 0;
}

.premium-conclusion {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--foreground-secondary);
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(243, 46, 113, 0.05), rgba(243, 46, 113, 0.02));
    border: 1px solid rgba(243, 46, 113, 0.1);
    border-radius: var(--radius-lg);
}

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

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }
}

/* About */
.about {
    padding: 100px 0;
    background: var(--background);
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image > div:last-child {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(243, 46, 113, 0.2);
}

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

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-lead {
    font-size: 1.125rem;
    color: var(--foreground-secondary);
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--foreground-secondary);
    margin-bottom: 1rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(243, 46, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.highlight-item p {
    font-size: 0.75rem;
    color: var(--foreground-secondary);
    margin: 0;
}

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

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.stars {
    color: var(--primary);
}

.rating-value {
    font-size: 1.125rem;
    font-weight: 600;
}

.rating-text {
    color: var(--foreground-secondary);
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

.testimonial-card {
    position: relative;
    padding: 1.5rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(to right, var(--primary), rgba(243, 46, 113, 0.6), var(--primary));
    border-radius: var(--radius);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.testimonial-card:hover .card-glow {
    opacity: 0.1;
}

.stars-small {
    color: var(--primary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--foreground-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-author strong {
    display: block;
    font-size: 0.875rem;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--foreground-secondary);
}

/* Location */
.location {
    padding: 128px 0;
    background: var(--background-muted);
}

.location-grid {
    display: grid;
    gap: 2rem;
}

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

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(243, 46, 113, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    font-size: 0.875rem;
    color: var(--foreground-secondary);
    line-height: 1.6;
}

.location-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--background-muted);
    aspect-ratio: 1;
}

/* FAQ */
.faq {
    padding: 128px 0;
    background: var(--background);
}

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

.faq-item {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--foreground-secondary);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 128px 0;
    background: var(--background-soft);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(225deg, transparent, rgba(243, 46, 113, 0.05), rgba(243, 46, 113, 0.1));
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.final-cta > div > p:first-of-type {
    font-size: 1.125rem;
    color: var(--foreground-secondary);
    max-width: 640px;
    margin: 0 auto 2rem;
    position: relative;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.cta-disclaimer {
    font-size: 0.875rem;
    color: var(--foreground-secondary);
    max-width: 640px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    position: relative;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--background-muted);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer-col p {
    font-size: 0.875rem;
    color: var(--foreground-secondary);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--foreground-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--foreground);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--foreground-secondary);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.75rem;
    color: var(--foreground-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--foreground);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #22BF5B;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-glow {
    position: absolute;
    inset: -8px;
    background: #25D366;
    border-radius: 50%;
    filter: blur(14px);
    opacity: 0.45;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.75;
    }
    50% {
        opacity: 1;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--background);
    border: 1px solid var(--border);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.lightbox-close:hover {
    background: var(--background-muted);
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius);
    border: 1px solid rgba(243, 46, 113, 0.2);
}

/* Animações de Entrada */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.animate {
    opacity: 1;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 639px) {
    /* Prevenir overflow horizontal no mobile */
    .btn {
        max-width: 100%;
        white-space: normal;
        word-break: break-word;
    }

    /* Hero mobile — coluna única, centralizado */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

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

    /* Imagem menor e menos alta no mobile */
    .hero-image {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        aspect-ratio: 16 / 9;
        border-radius: 1rem;
        overflow: hidden;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
        display: block;
    }

    /* Títulos menores para não transbordar */
    .hero h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    .hero-badges {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 0 auto;
        gap: 1rem;
    }

    /* Centralizar CTAs soltos */
    .resultados-cta {
        display: flex;
        justify-content: center;
    }

    .resultados-cta .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* Reduzir espaçamentos no mobile */
    .services,
    .experience,
    .differentials,
    .about,
    .protocol,
    .location-premium,
    .testimonials,
    .faq,
    .location,
    .final-cta {
        padding: 48px 0 !important;
    }

    .hero {
        padding: 100px 0 60px !important;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* Reduzir padding interno nos cards */
    .service-card,
    .testimonial-card,
    .protocol-item {
        padding: 1.25rem;
    }

    .feature-item {
        padding: 1rem;
        gap: 1rem;
    }

    .premium-conclusion {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .about-highlights {
        gap: 1rem;
    }

    .highlight-item {
        padding: 1rem;
    }

    /* Garantir que seções não transbordem */
    section,
    .container,
    .container-small {
        max-width: 100%;
        overflow-x: hidden;
    }
}

@media (min-width: 640px) {
    .hero-badges {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

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

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

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

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }

    .desktop-only {
        display: inline-flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero {
        padding: 200px 0 160px;
    }

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

    .hero h1 {
        font-size: 2.75rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .differentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .final-cta h2 {
        font-size: 3rem;
    }

    .about-content h2 {
        font-size: 3rem;
    }

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

    .hero h1 {
        font-size: 2.75rem;
    }

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

/* Indicado Para Section */
.indicado {
    padding: 80px 0;
    background: var(--primary);
}

.indicado h2 {
    font-size: 2rem;
    color: white;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-align: center;
}

.indicado-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.indicado-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: white;
    font-size: 1.05rem;
    line-height: 1.6;
}

.check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    color: white;
    margin-top: 0.1rem;
}

/* Procedure Section */
.procedure {
    padding: 128px 0;
    background: var(--background);
}

.procedure-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.procedure-card {
    padding: 2rem;
    background: var(--background-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s;
}

.procedure-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(243, 46, 113, 0.1);
    border-color: rgba(243, 46, 113, 0.3);
}

.procedure-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.procedure-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.procedure-card p {
    font-size: 0.95rem;
    color: var(--foreground-secondary);
    line-height: 1.7;
}

/* Hero adjustments for reference style */
.hero {
    background: var(--background);
}

/* Section Tag */
.section-tag {
    display: inline-block;
    background: #FDE8F0;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    border: 1px solid #F8C8DC;
    margin-bottom: 0.75rem;
}

.section-header .section-tag {
    display: inline-block;
    margin-bottom: 1rem;
}

/* Resultados Gallery */
.resultados {
    padding: 80px 0 100px;
    background: var(--background);
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .resultados-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .resultados-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.resultado-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}

.resultado-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #F8C8DC;
}

.resultado-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--background-muted);
}

.resultado-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.resultado-card:hover .resultado-img img {
    transform: scale(1.04);
}

.resultado-info {
    padding: 0.875rem 1rem;
}

.resultado-tag {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.resultado-info p {
    font-size: 0.8rem;
    color: var(--foreground-secondary);
    line-height: 1.4;
    margin: 0;
}

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

/* Procedure section - alternate bg */
.procedure {
    background: var(--background-soft);
}

/* Indicado section - softer style */
.indicado {
    background: linear-gradient(135deg, var(--primary) 0%, #C41850 100%);
}

/* Lighter testimonials bg */
.testimonials {
    background: var(--background-muted);
}

/* Location lighter */
.location {
    background: var(--background);
}

/* FAQ lighter */
.faq {
    background: var(--background-soft);
}

/* Card glow - remove */
.card-glow {
    display: none;
}
