/* Reset e Configurações Básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores baseada na logo */
    --primary-color: #2c5f7c;  /* Azul escuro/teal */
    --secondary-color: #f4e4c1;    /* Bege claro */
    --accent-color: #e8b4b8; /*rosa suave */
    --text-dark: #2c3e50;          /* Texto escuro */
    --text-light: #6c757d;         /* Texto claro */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    
    /* Tipografia */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Espaçamentos */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transições */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1.5rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

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

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #d4a5a8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(232, 180, 184, 0.4);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.logo-content:hover .logo-icon::before {
    transform: translateX(100%);
}

.logo-icon i {
    font-size: 24px;
    color: var(--white);
    z-index: 2;
    position: relative;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-name {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    text-transform: none;
}

.nav-link:hover {
    color: var(--secondary-color);
}

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

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

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

.book-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-btn:hover {
    background: var(--white);
    color: var(--accent-color);
    transform: translateY(-2px);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== HERO SECTION - CAROUSEL STYLE ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Carrossel de Imagens */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Navegação do Carrossel */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
    pointer-events: none;
}

.carousel-arrow {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-arrow i {
    font-size: 1.2rem;
}

/* Pontos de Paginação */
.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 0.8rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: #2c5f7c;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    min-height: 80vh;
}

/* Hero Text */
.hero-text {
    max-width: 500px;
    color: var(--white);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    max-width: 450px;
}

.hero-buttons {
    display: flex;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: none;
}

.btn-primary:hover {
    background: var(--white);
    color: #2c5f7c;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* Links das Redes Sociais */
.hero-social-links {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
}

.hero-social-links .social-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
}

.hero-social-links .social-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(44, 95, 124, 0.5);
}

.social-separator {
    color: var(--white);
    font-size: 0.9rem;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Hero Testimonials */
.hero-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.2rem 1rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--white);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    font-style: italic;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.testimonial-author {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Video */
.hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
}

.video-container video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.3s ease;
}

.hero-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.video-container:hover .hero-main-image img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.1) 0%, rgba(232, 180, 184, 0.1) 100%);
    z-index: 1;
}

.social-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-badge:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
}

.social-badge i {
    font-size: 1rem;
    color: #ff0050;
}

/* Quando vídeo estiver disponível */
.video-container.video-loaded video {
    display: block;
}

.video-container.video-loaded .hero-main-image {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        text-align: center;
        min-height: auto;
        padding: 4rem 0 6rem 0;
        position: relative;
        z-index: 4;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .carousel-nav {
        padding: 0 1rem;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow i {
        font-size: 1rem;
    }
    
    .carousel-dots {
        bottom: 1.5rem;
        left: 1.5rem;
    }
    
    .hero-social-links {
        bottom: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-btn i {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 1rem;
        position: relative;
        z-index: 4;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .carousel-nav {
        padding: 0 0.5rem;
        top: 60%;
        z-index: 2;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
        opacity: 0.7;
    }
    
    .carousel-arrow i {
        font-size: 0.9rem;
    }
    
    .carousel-dots {
        bottom: 1rem;
        left: 1rem;
        gap: 0.5rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-social-links {
        bottom: 1rem;
        gap: 0.8rem;
    }
    
    .hero-social-links .social-link {
        font-size: 0.8rem;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-btn {
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-btn i {
        font-size: 1rem;
    }

    /* Featured Treatments Responsive */
    .treatments-title {
        font-size: 2.2rem;
    }

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

    .treatment-card {
        padding: 2rem 1.5rem;
    }

    .floating-element {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .carousel-nav {
        top: 65%;
        padding: 0 0.3rem;
    }
    
    .carousel-arrow {
        width: 30px;
        height: 30px;
        opacity: 0.6;
    }
    
    .carousel-arrow i {
        font-size: 0.8rem;
    }
    
    .carousel-dots {
        bottom: 0.8rem;
        left: 0.8rem;
        gap: 0.4rem;
    }

    /* Ocultar botões de navegação em telas muito pequenas */
    .carousel-nav {
        display: none;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-social-links {
        bottom: 0.8rem;
        gap: 0.6rem;
    }
    
    .hero-social-links .social-link {
        font-size: 0.7rem;
    }
    
    .social-separator {
        font-size: 0.7rem;
    }
    
    .whatsapp-float {
        bottom: 0.8rem;
        right: 0.8rem;
    }
    
    .whatsapp-btn {
        width: 40px;
        height: 40px;
    }
    
    .whatsapp-btn i {
        font-size: 0.9rem;
    }

    /* Logo Mobile */
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-icon i {
        font-size: 20px;
    }
    
    .logo-name {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    z-index: 1000;
}

.section-subtitle {
    font-size: 1.1rem;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1000;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Elementos decorativos removidos - fundo rosa fixo removido da seção sobre */

/* About Hero */
.about-hero {
    margin-bottom: 6rem;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.about-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(232, 180, 184, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.about-hero-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: var(--accent-color);
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.about-hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-hero-image {
    position: relative;
    padding: 2rem;
}

.image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    padding: 20px;
}

.hero-doctor-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

.image-container::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.image-container::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: linear-gradient(225deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

/* Elementos decorativos removidos - fundo rosa removido da imagem about */

/* Statistics Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    padding: 2rem 0;
    background: #ffffff;
    border: 1px solid #e8b4b8;
    box-shadow: 0 10px 20px rgba(32, 32, 32, 0.1);
    border-radius: 20px;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    z-index: 10;
}

/* Elemento decorativo rosa removido das estatísticas */

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: #e8b4b8;
    margin-bottom: 0.3rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #e8b4b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Doctor Profile */
.doctor-profile {
    margin-bottom: 6rem;
}

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

.doctor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.doctor-name {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.doctor-title {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.doctor-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.credential {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: var(--transition);
}

.credential:hover {
    background: var(--secondary-color);
    transform: translateX(10px);
}

.credential i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.credential span {
    font-weight: 500;
    color: var(--text-dark);
}

.doctor-img-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.doctor-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.doctor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.8), rgba(232, 180, 184, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.doctor-img-container:hover .doctor-overlay {
    opacity: 1;
}

.doctor-img-container:hover .doctor-img {
    transform: scale(1.1);
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Section */
.about-values {
    margin-bottom: 6rem;
    position: relative;
    z-index: 10;
}

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

.values-header h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.values-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    border: 1px solid #2c3e50;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

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

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Timeline Section */
.about-timeline {
    position: relative;
    z-index: 10;
}

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

.timeline-header h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.timeline-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
    max-width: 300px;
    border: 2px solid var(--light-gray);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.timeline-content h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Products Section */
.products {
    padding: var(--section-padding);
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Elementos decorativos removidos - fundo rosa fixo removido */

@keyframes delicateFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(0.5deg); }
    50% { transform: translateY(-4px) rotate(-0.3deg); }
    75% { transform: translateY(-12px) rotate(0.2deg); }
}

/* Elementos decorativos sempre visíveis nas seções produtos e sobre */

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-15px) rotate(0.5deg); }
}

.products .container {
    position: relative;
    z-index: 10;
}

/* Products Header */
.products-header {
    text-align: center;
    margin-bottom: 5rem;
}

.products-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(232, 180, 184, 0.5);
}

.products-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.products-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Products Showcase */
.products-showcase {
    margin-bottom: 5rem;
}

/* Featured Product */
.featured-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, var(--white), #f8f9fa);
    border: 1px solid var(--secondary-color);
    border-radius: 30px;
    padding: 4rem;
    margin-bottom: 4rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Elemento decorativo rosa removido do produto em destaque */

.featured-content {
    position: relative;
    z-index: 1;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.featured-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.benefit i {
    color: #10b981;
    font-size: 1.1rem;
}

.benefit span {
    color: var(--text-dark);
    font-weight: 500;
}

.featured-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount {
    background: #ef4444;
    color: var(--white);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(232, 180, 184, 0.5);
}

.featured-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(232, 180, 184, 0.6);
    color: var(--white);
    text-decoration: none;
}

.featured-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: 650px;
    object-fit: contain;
    object-position: center;
    background: var(--light-gray);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

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

/* Products Grid Extra */
.products-grid-extra {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    animation: fadeInUp 0.6s ease-out;
}

.product-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #96969660;
    position: relative;
}

.product-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: var(--light-gray);
    border-radius: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: var(--transition);
    background: var(--light-gray);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.9), rgba(232, 180, 184, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition);
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-item:hover .product-image img {
    transform: scale(1.1);
}

.quick-view-btn,
.wishlist-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.quick-view-btn:hover,
.wishlist-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #fbbf24;
    font-size: 0.8rem;
}

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

.product-price {
    margin-bottom: 0;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Products CTA */
.products-cta {
    text-align: center;
    background: var(--accent-color);
    border-radius: 30px;
    padding: 3rem 2rem;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.products-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    background: var(--white);
    color: var(--accent-color);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.95) 100%);
    z-index: 0;
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 50px 50px;
    z-index: 0;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.services .container {
    position: relative;
    z-index: 1;
}


/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.services-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    max-width: 1900px;
    margin: 0 auto;
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    border: 1px solid #f0f0f0;
    width: 100%;
    max-width: 700px;
    height: 550px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.service-category {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.service-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
    margin-top: auto;
}

.service-btn:hover {
    background: var(--white);
    color: var(--text-dark);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--text-dark);
}

.contact-content {
    
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--white);
    line-height: 1.6;
}

.contact-map {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--primary-color);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a252f 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

/* Parar elementos decorativos antes do footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    z-index: 1;
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-text h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.newsletter-form {
    position: relative;
}

.form-group {
    display: flex;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.form-group:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.form-group input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
}

.form-group input::placeholder {
    color: var(--text-light);
}

.newsletter-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

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

/* Main Footer */
.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Brand Section */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.footer-logo .logo-subtitle {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Certifications */
.certifications {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.cert-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 20px;
}

.cert-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(232, 180, 184, 0.3);
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer Sections */
.footer-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 1px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.3rem 0;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.9rem;
    width: 16px;
    color: var(--accent-color);
}

/* Contact Section */
.footer-contact {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(232, 180, 184, 0.3);
}

.contact-icon i {
    color: var(--white);
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Footer Actions */
.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.action-btn.primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(232, 180, 184, 0.3);
}

.action-btn.primary:hover {
    background: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.action-btn.secondary {
    background: transparent;
    color: #25d366;
    border-color: #25d366;
}

.action-btn.secondary:hover {
    background: #25d366;
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links-bottom {
    display: flex;
    gap: 2rem;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--text-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-main-image {
        height: 50vh;
        order: 2;
    }
    
    .hero-right-content {
        height: auto;
        padding: 3rem 2rem;
        order: 1;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-treatment-images {
        display: none;
    }
    
    .hero-sidebar {
        display: none;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero-image {
        padding: 1rem;
    }
    
    .image-container {
        padding: 15px;
    }
    
    .image-container::before,
    .image-container::after {
        display: none;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem 0;
        margin-bottom: 3rem;
    }
    
    .doctor-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 70px;
        margin-bottom: 2rem;
    }
    
    .timeline-year {
        position: absolute;
        left: -45px;
        min-width: 85px;
        font-size: 1rem;
        padding: 12px 15px;
        text-align: center;
        white-space: nowrap;
        z-index: 10;
    }
    
    .timeline-content {
        margin: 0;
        max-width: none;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-title {
        font-size: 2.5rem;
    }
    
    .featured-product {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .featured-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .products-grid-extra {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 1200px;
    }
    
    .service-card {
        width: 100%;
        max-width: 300px;
    }
    
    .service-card {
        height: 250px;
    }
    
    .service-overlay {
        padding: 1.5rem;
    }
    
    .service-name {
        font-size: 1.3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Footer Responsive */
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .newsletter-text h3 {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        max-width: none;
        text-align: center;
    }

    .certifications {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .cert-item {
        max-width: 200px;
        padding: 0.8rem 1rem;
    }

    .social-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .social-link {
        max-width: 180px;
        padding: 0.8rem 1rem;
    }

    .footer-actions {
        flex-direction: row;
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links-bottom {
        justify-content: center;
    }

    /* Footer Contact Mobile - 768px */
    .contact-item {
        padding: 1rem;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }

    .contact-details {
        flex: 1;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-title {
        margin-top: 20px;
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1rem 0;
        margin-bottom: 2.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .doctor-name {
        font-size: 2rem;
    }
    
    .values-header h3,
    .timeline-header h3 {
        font-size: 2rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .timeline-year {
        left: -35px;
        min-width: 80px;
        font-size: 0.9rem;
        padding: 10px 12px;
        text-align: center;
        white-space: nowrap;
        z-index: 10;
    }
    
    .about-hero-image {
        padding: 0.5rem;
    }
    
    .image-container {
        padding: 10px;
    }
    
    .about-hero-image::before,
    .about-hero-image::after {
        display: none;
    }
    
    .products-title {
        font-size: 2rem;
    }
    
    .featured-product {
        padding: 1.5rem;
    }
    
    .featured-title {
        font-size: 1.8rem;
    }
    
    .featured-description {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .products-grid-extra {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .products-cta {
        padding: 2rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 350px;
    }
    
    .service-card {
        width: 100%;
        max-width: 350px;
    }
    
    .service-card {
        height: 220px;
    }
    
    .service-overlay {
        padding: 1rem;
    }
    
    .service-name {
        font-size: 1.2rem;
    }
    
    .service-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    /* Footer Mobile */
    .newsletter-text h3 {
        font-size: 1.3rem;
    }

    .newsletter-text p {
        font-size: 1rem;
    }

    .form-group {
        flex-direction: column;
        border-radius: 15px;
    }

    .form-group input {
        padding: 15px 20px;
        border-radius: 15px 15px 0 0;
    }

    .newsletter-btn {
        padding: 15px 20px;
        border-radius: 0 0 15px 15px;
    }

    .footer-main {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        gap: 2.5rem;
        padding: 0 1rem;
    }

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

    .footer-logo .logo-text {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .footer-description {
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-title {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links li {
        margin-bottom: 1rem;
    }

    .footer-links a {
        justify-content: center;
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .certifications {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        margin-bottom: 2rem;
    }

    .cert-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .cert-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(232, 180, 184, 0.2);
    }

    .cert-item i {
        font-size: 1.2rem;
        color: var(--accent-color);
        margin-right: 0.8rem;
    }

    .cert-item span {
        font-size: 0.9rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        margin-top: 1rem;
    }

    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        text-align: center;
        padding: 1rem 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background: var(--accent-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(232, 180, 184, 0.3);
    }

    .social-link i {
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }

    .social-link span {
        font-size: 0.9rem;
        font-weight: 500;
    }

    .contact-item {
        padding: 1rem;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-icon {
        width: 55px;
        height: 55px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--accent-color);
        border-radius: 50%;
        box-shadow: 0 5px 15px rgba(232, 180, 184, 0.3);
    }

    .contact-icon i {
        font-size: 1.3rem;
        color: var(--white);
    }

    .contact-details {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        text-align: left;
    }

    .contact-label {
        font-size: 0.85rem;
        color: var(--accent-color);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .contact-value {
        color: rgba(255, 255, 255, 0.95);
        font-size: 0.95rem;
        line-height: 1.5;
        word-break: break-word;
        font-weight: 500;
    }

    .footer-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .action-btn {
        width: 100%;
        max-width: 250px;
        padding: 14px 24px;
        font-size: 0.9rem;
        border-radius: 30px;
        text-align: center;
        justify-content: center;
    }

    .action-btn i {
        font-size: 1.1rem;
    }

    .footer-links-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Featured Treatments Responsive */
    .treatments-title {
        font-size: 2rem;
    }

    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .treatment-card {
        padding: 2rem 1.5rem;
    }

    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Logo Responsive */
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .logo-icon i {
        font-size: 22px;
    }
    
    .logo-name {
        font-size: 1.3rem;
    }
    
    .logo-subtitle {
        font-size: 0.72rem;
    }

    /* Timeline para telas muito pequenas */
    .timeline-item {
        padding-left: 75px;
    }

    .timeline-year {
        left: -30px;
        min-width: 75px;
        font-size: 0.85rem;
        padding: 8px 10px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-image,
.section-header,
.about-content,
.products-grid,
.services-grid,
.contact-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Estados de foco para acessibilidade */
.btn:focus,
.nav-link:focus,
.social-link:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Featured Treatments Section */
.featured-treatments {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

/* Treatments Header */
.treatments-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.treatments-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(232, 180, 184, 0.3);
}

.treatments-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.treatments-title .highlight {
    color: var(--accent-color);
    position: relative;
}

.treatments-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

/* Treatments Grid */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Treatment Cards */
.treatment-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(232, 180, 184, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(232, 180, 184, 0.2);
    border-color: var(--accent-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(232, 180, 184, 0.3);
}

.treatment-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(232, 180, 184, 0.4);
}

.treatment-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.treatment-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Card Glow Effect removido - elemento rosa removido */

/* Specific Card Styles */
.card-1 {
    animation-delay: 0.1s;
}

.card-2 {
    animation-delay: 0.2s;
}

.card-3 {
    animation-delay: 0.3s;
}


.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(232, 180, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(232, 180, 184, 0.4);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}


/* Services CTA Button */
.services-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.services-more-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.4);
    position: relative;
    overflow: hidden;
}

.services-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.services-more-btn:hover::before {
    left: 100%;
}

.services-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(232, 180, 184, 0.6);
}

.services-more-btn i {
    transition: transform 0.3s ease;
}

.services-more-btn:hover i {
    transform: scale(1.1);
}

/* Services Sidebar */
.services-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
}

.services-sidebar.active {
    display: block;
}

.sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    animation: fadeIn 0.3s ease;
}

.sidebar-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 700px;
    height: 100%;
    background: #ffffff;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    animation: slideInRight 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Elementos decorativos rosa removidos da sidebar */

/* Elemento SVG rosa removido da sidebar */

/* Elementos decorativos adicionais removidos da sidebar */

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

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.sidebar-header h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c5f7c;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.sidebar-header h2::before {
    content: '✨';
    font-size: 1.5rem;
}

.sidebar-close {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #6c757d;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.sidebar-close:hover {
    background: var(--accent-color);
    color: white;
    transform: rotate(90deg);
    border-color: var(--accent-color);
}

.sidebar-body {
    flex: 1;
    padding: 1.5rem 2rem 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.search-container {
    position: relative;
    margin-bottom: 2rem;
    flex-shrink: 0;
}

.search-container input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    color: #2c5f7c;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.search-container input::placeholder {
    color: #6c757d;
}

.search-container input:focus {
    border-color: var(--accent-color);
    background: #ffffff;
    box-shadow: 0 0 20px rgba(232, 180, 184, 0.3);
}

.search-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.1rem;
    z-index: 10;
}

.services-list-compact {
    flex: 1;
    overflow-y: auto;
}

.service-category-compact {
    margin-bottom: 2rem;
}

.service-category-compact h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5f7c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-category-compact h3 i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.service-items-compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.service-item-compact {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: #495057;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

/* Elemento decorativo rosa removido do hover dos itens compactos */

.service-item-compact:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    box-shadow: 0 5px 15px rgba(232, 180, 184, 0.3);
}

.service-item-compact.hidden {
    display: none;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive Sidebar */
@media (max-width: 768px) {
    .sidebar-content {
        max-width: 100%;
    }
    
    .sidebar-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .sidebar-header h2 {
        font-size: 1.5rem;
    }
    
    .sidebar-body {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .service-category-compact h3 {
        font-size: 1.1rem;
    }
    
    .service-item-compact {
        padding: 0.7rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .sidebar-header {
        padding: 1rem 1.2rem 0.8rem;
    }
    
    .sidebar-header h2 {
        font-size: 1.3rem;
    }
    
    .sidebar-body {
        padding: 0.8rem 1.2rem 1rem;
    }
    
    .search-container input {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .service-category-compact h3 {
        font-size: 1rem;
        gap: 0.6rem;
    }
    
    .service-item-compact {
        padding: 0.6rem 0.7rem;
        font-size: 0.75rem;
    }
}


/* WhatsApp CTA Section */
.footer-whatsapp-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a5c 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.footer-whatsapp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="whatsapp-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23whatsapp-pattern)"/></svg>');
    opacity: 0.3;
}

.whatsapp-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.whatsapp-cta-text h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.whatsapp-cta-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.whatsapp-cta-btn {
    display: flex;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(44, 95, 124, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    border: 2px solid var(--primary-color);
}

.whatsapp-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 95, 124, 0.1), transparent);
    transition: left 0.6s ease;
}

.whatsapp-cta-btn:hover::before {
    left: 100%;
}

.whatsapp-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(44, 95, 124, 0.3);
    background: var(--white);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.whatsapp-cta-btn i.fab.fa-whatsapp {
    font-size: 2rem;
    color: var(--primary-color);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.btn-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.btn-arrow {
    margin-left: 1rem;
    transition: var(--transition);
}

.whatsapp-cta-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-arrow i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Responsive WhatsApp CTA */
@media (max-width: 768px) {
    .footer-whatsapp-cta {
        padding: 2rem 0;
    }
    
    .whatsapp-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .whatsapp-cta-text h3 {
        font-size: 1.6rem;
    }
    
    .whatsapp-cta-text p {
        font-size: 1rem;
    }
    
    .whatsapp-cta-btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-cta-text h3 {
        font-size: 1.4rem;
    }
    
    .whatsapp-cta-text p {
        font-size: 0.9rem;
    }
    
    .whatsapp-cta-btn {
        padding: 0.9rem 1.2rem;
    }
    
    .btn-content {
        gap: 0.8rem;
    }
    
    .whatsapp-cta-btn i.fab.fa-whatsapp {
        font-size: 1.6rem;
    }
    
    .btn-title {
        font-size: 1rem;
    }
    
    .btn-subtitle {
        font-size: 0.8rem;
    }
}

/* Product Buy Button */
.product-buy-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(232, 180, 184, 0.3);
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    justify-content: center;
}

.product-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 180, 184, 0.4);
    color: var(--white);
    text-decoration: none;
}

.product-buy-btn i {
    font-size: 16px;
}

/* Responsive Product Buy Button */
@media (max-width: 768px) {
    .product-buy-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .product-buy-btn {
        padding: 8px 16px;
        font-size: 12px;
        gap: 6px;
    }
    
    .product-buy-btn i {
        font-size: 14px;
    }
}

/* Ajustes para imagens dos produtos */
@media (max-width: 768px) {
    .product-image {
        height: 220px;
    }
    
    .image-wrapper img {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .product-image {
        height: 200px;
    }
    
    .image-wrapper img {
        height: 400px;
    }
}