/* Reset e Configurações Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    --primary-color: #D2B48C; /* Bege elegante */
    --secondary-color: #8B7355; /* Bege escuro */
    --accent-color: #F5DEB3; /* Bege claro */
    --text-color: #4A4A4A; /* Cinza escuro suave */
    --light-bg: #FFF8F0; /* Bege muito claro */
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(210, 180, 140, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #D2B48C, #8B7355);
    --gradient-accent: linear-gradient(135deg, #F5DEB3, #DEB887);
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-attachment: fixed;
        padding: 0;
    }

    .hero-content {
        max-width: 1200px;
        padding: 0 40px;
    }

    .hero-content h1 {
        font-size: 64px;
        margin-bottom: 30px;
    }

    .hero-content p {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .cta-button {
        padding: 20px 40px;
        font-size: 18px;
    }

    /* Serviços Desktop */
    .services {
        padding: 80px 0;
    }

    .services h2 {
        font-size: 48px;
        margin-bottom: 50px;
    }

    .services-slider {
        max-width: 1600px;
        padding: 0 40px;
    }

    .service-slide {
        min-width: 380px;
        max-width: 420px;
        margin: 0 20px;
        flex: 0 0 380px;
    }

    .service-info {
        padding: 30px;
    }

    .service-info h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .service-info p {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    /* Depilação Desktop */
    .depilacao-section {
        padding: 100px 40px;
    }

    .depilacao-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .depilacao-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }

    .depilacao-text {
        padding: 40px;
    }

    .depilacao-text h2 {
        font-size: 48px;
        text-align: left;
    }

    .depilacao-description {
        font-size: 18px;
        text-align: left;
    }

    .depilacao-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .benefit-item {
        font-size: 16px;
    }

    .depilacao-image {
        height: 100%;
        min-height: 500px;
    }

    /* Contato Desktop */
    .contact {
        padding: 100px 40px;
    }

    .contact h2 {
        font-size: 48px;
        margin-bottom: 50px;
    }

    .contact-info {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .contact-item {
        padding: 30px;
        text-align: center;
    }

    .contact-item i {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .social-links {
        margin-top: 50px;
    }

    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    /* Menu Desktop */
    .mobile-nav {
        padding: 20px 40px;
    }

    .nav-header {
        max-width: 1400px;
        margin: 0 auto;
    }

    .mobile-logo {
        height: 50px;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .nav-menu a {
        color: var(--text-color);
        font-size: 16px;
        padding: 10px 20px;
        border: none;
        position: relative;
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: var(--transition);
        transform: translateX(-50%);
    }

    .nav-menu a:hover::after {
        width: 100%;
    }

    .nav-menu a.active {
        color: var(--primary-color);
    }

    .close-menu {
        display: none;
    }

    /* Slider Navigation Desktop */
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .slider-nav.prev {
        left: 20px;
    }

    .slider-nav.next {
        right: 20px;
    }

    /* Animations Desktop */
    .service-slide:hover {
        transform: translateY(-8px);
    }

    .contact-item:hover {
        transform: translateY(-5px);
    }

    .social-icon:hover {
        transform: translateY(-5px) scale(1.1);
    }

    /* Hero Section Desktop */
    .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .cta-button.secondary {
        background: transparent;
        border: 2px solid var(--white);
    }

    .cta-button.secondary:hover {
        background: var(--white);
        color: var(--primary-color);
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-subtitle {
        font-size: 18px;
        color: var(--secondary-color);
        margin-top: 15px;
    }

    /* Depilação Desktop */
    .depilacao-cta {
        margin-top: 30px;
    }

    .depilacao-note {
        font-size: 14px;
        color: var(--secondary-color);
        margin-top: 10px;
        font-style: italic;
    }

    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(210, 180, 140, 0.2), rgba(139, 115, 85, 0.2));
    }

    /* Contact Items Desktop */
    .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-item p {
        margin-top: 10px;
        font-size: 14px;
        color: var(--secondary-color);
    }

    /* Animations Desktop */
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
    }

    .service-slide:hover .service-image img {
        transform: scale(1.03);
    }

    .depilacao-image img {
        transition: transform 0.5s ease;
    }

    .depilacao-image:hover img {
        transform: scale(1.05);
    }

    /* Menu Desktop Hover Effects */
    .nav-menu a {
        transition: color 0.3s ease;
    }

    .nav-menu a:hover {
        color: var(--primary-color);
    }

    /* Improved Button Hover Effects */
    .cta-button, .service-button, .depilacao-button {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .cta-button:hover, .service-button:hover, .depilacao-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(210, 180, 140, 0.3);
    }

    /* Contact Items Hover */
    .contact-item {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(210, 180, 140, 0.2);
    }

    /* Social Icons Hover */
    .social-icon {
        transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    }

    .social-icon:hover {
        transform: translateY(-5px) scale(1.1);
        background: var(--primary-color);
        color: var(--white);
    }
}

/* Ajustes para telas médias */
@media (min-width: 768px) and (max-width: 1023px) {
    .service-slide {
        min-width: 340px;
        max-width: 400px;
        flex: 0 0 340px;
    }

    .service-info h3 {
        font-size: 24px;
    }

    .service-info p {
        font-size: 15px;
    }
}

/* Ajustes para telas pequenas */
@media (max-width: 767px) {
    .service-slide {
        min-width: 300px;
        max-width: 380px;
        flex: 0 0 300px;
    }

    .service-info {
        padding: 20px;
    }

    .service-info h3 {
        font-size: 20px;
    }

    .service-info p {
        font-size: 14px;
    }
}

/* Intro Styles */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 1s ease-in-out 2.5s forwards;
}

.intro-content {
    text-align: center;
    animation: scaleIn 1s ease-out;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.intro-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.intro-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.5s forwards;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.intro-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: var(--secondary-color);
    opacity: 0;
    animation: fadeInUp 0.5s ease-out 0.8s forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html, body {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
    width: 100%;
}

/* Menu Mobile */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.mobile-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    display: block;
    padding: 15px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.nav-menu a:active {
    background: #f5f5f5;
    transform: scale(0.98);
}

.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 60px 20px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/inicio.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(210, 180, 140, 0.3), rgba(139, 115, 85, 0.3));
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { opacity: 0.3; }
    50% { opacity: 0.5; }
    100% { opacity: 0.3; }
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
    color: var(--white);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s backwards;
    color: var(--white);
}

/* Botões */
.cta-button, .card-button, .service-button, .depilacao-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    margin: 10px 0;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(210, 180, 140, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button::before, .card-button::before, .service-button::before, .depilacao-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: 0.5s;
}

.cta-button:hover::before, .card-button:hover::before, .service-button:hover::before, .depilacao-button:hover::before {
    left: 100%;
}

.cta-button:active, .card-button:active, .service-button:active, .depilacao-button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(155, 77, 202, 0.2);
}

.service-button {
    background: var(--gradient-primary);
    box-shadow: 0 4px 15px rgba(210, 180, 140, 0.3);
}

/* Serviços */
.services {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
    color: var(--text-color);
    position: relative;
    padding-bottom: 15px;
    width: 100%;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
}

.services-slider {
    position: relative;
    width: 100%;
    max-width: 1800px;
    overflow: hidden;
    padding: 0 30px;
    margin: 0 auto;
    min-height: 500px;
}

.services-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    padding: 20px 0;
    touch-action: pan-y pinch-zoom;
    width: 100%;
    position: relative;
}

.service-slide {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(210, 180, 140, 0.15);
    margin: 0 auto;
    min-width: 400px;
    max-width: 450px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(210, 180, 140, 0.1);
    opacity: 1;
    transform: translateX(0);
    flex: 0 0 400px;
    position: relative;
}

.service-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(210, 180, 140, 0.25);
}

.service-slide:hover::before {
    opacity: 1;
}

.service-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-slide:hover .service-image img {
    transform: scale(1.1);
}

.service-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    transform: translateY(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.service-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.service-info p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.service-button:hover {
    background: transparent;
    color: var(--white);
}

/* Desktop Styles para Serviços */
@media (min-width: 1024px) {
    .services {
        padding: 100px 0;
    }

    .services h2 {
        font-size: 48px;
        margin-bottom: 60px;
    }

    .services-slider {
        max-width: 1800px;
        padding: 0 50px;
    }

    .service-slide {
        min-width: 450px;
        max-width: 500px;
        margin: 0 25px;
        flex: 0 0 450px;
    }

    .service-info {
        padding: 40px;
    }

    .service-info h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .service-info p {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .service-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* Ajustes para telas médias */
@media (min-width: 768px) and (max-width: 1023px) {
    .service-slide {
        min-width: 380px;
        max-width: 420px;
        flex: 0 0 380px;
    }

    .service-info h3 {
        font-size: 26px;
    }

    .service-info p {
        font-size: 16px;
    }
}

/* Ajustes para telas pequenas */
@media (max-width: 767px) {
    .services {
        padding: 40px 0;
    }

    .services h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .services-slider {
        padding: 0 20px;
    }

    .service-slide {
        min-width: 320px;
        max-width: 380px;
        flex: 0 0 320px;
    }

    .service-info {
        padding: 25px;
    }

    .service-info h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .service-info p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .service-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 20px;
}

.slider-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

/* Slider Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Animações */
@keyframes shimmer {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

/* Ajustes de Espaçamento */
section {
    margin-bottom: 30px;
    scroll-margin-top: 70px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-card {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Ajustes de Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading Indicator */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loading-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(155, 77, 202, 0.3);
}

.back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

/* Swipe Indicator */
.swipe-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
    animation: swipeHint 2s infinite;
}

@keyframes swipeHint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Card Animations */
.service-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Animation for CTA Button */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Improved Menu Animation */
.nav-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.nav-menu.active {
    transform: translateX(0);
}

/* Touch Feedback */
.service-card:active,
.contact-item:active,
.social-icon:active {
    transform: scale(0.98);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent Text Selection */
.no-select {
    user-select: none;
    -webkit-user-select: none;
}

/* Improved Card Layout */
.service-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.service-cards::-webkit-scrollbar {
    display: none;
}

.service-card {
    scroll-snap-align: start;
    flex: 0 0 85%;
    margin-right: 15px;
}

/* Improved Image Loading */
.card-image {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

/* Nova Seção de Depilação */
.depilacao-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--accent-color) 100%);
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.depilacao-container {
    max-width: 100%;
    margin: 0 auto;
}

.depilacao-content {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(210, 180, 140, 0.1);
}

.depilacao-text {
    padding: 30px 20px;
}

.depilacao-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.depilacao-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

.depilacao-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.depilacao-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.depilacao-button:active {
    transform: scale(0.98);
}

.depilacao-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.depilacao-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ajustes Responsivos */
@media (max-width: 480px) {
    .depilacao-benefits {
        grid-template-columns: 1fr;
    }

    .depilacao-text h2 {
        font-size: 24px;
    }

    .depilacao-description {
        font-size: 14px;
    }
}

/* Botão de Fechar Menu */
.close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

/* Seção de Contato */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(210, 180, 140, 0.5), transparent);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(210, 180, 140, 0.1);
    backdrop-filter: blur(10px);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(210, 180, 140, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(210, 180, 140, 0.2);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(210, 180, 140, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(210, 180, 140, 0.2);
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.contact-details p {
    color: var(--secondary-color);
    font-size: 14px;
    margin: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 180, 140, 0.1);
    border: 1px solid rgba(210, 180, 140, 0.2);
}

.social-icon:hover {
    transform: translateY(-3px);
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 6px 20px rgba(210, 180, 140, 0.2);
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .contact-details h3 {
        font-size: 16px;
    }

    .contact-link {
        font-size: 14px;
    }

    .contact-details p {
        font-size: 12px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Contador Regressivo */
.countdown-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h20v20H0z" fill="none"/><path d="M10 0c5.523 0 10 4.477 10 10s-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0zm0 2c-4.418 0-8 3.582-8 8s3.582 8 8 8 8-3.582 8-8-3.582-8-8-8z" fill="rgba(210, 180, 140, 0.1)"/></svg>') repeat;
    opacity: 0.5;
}

.countdown-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.countdown-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(210, 180, 140, 0.2);
    border: 1px solid rgba(210, 180, 140, 0.3);
    backdrop-filter: blur(10px);
}

.countdown-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(210, 180, 140, 0.2);
}

.countdown-subtitle {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(210, 180, 140, 0.2);
    line-height: 1;
    display: inline-block;
}

.countdown-label {
    font-size: 14px;
    color: var(--secondary-color);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 48px;
    color: var(--primary-color);
    font-weight: 300;
    margin-top: -20px;
}

.countdown-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 180, 140, 0.3);
    border: none;
    margin-top: 20px;
}

.countdown-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(210, 180, 140, 0.4);
}

/* Desktop Styles para o Contador */
@media (min-width: 1024px) {
    .countdown-section {
        padding: 60px 40px;
    }

    .countdown-content {
        padding: 60px;
    }

    .countdown-header h2 {
        font-size: 48px;
    }

    .countdown-subtitle {
        font-size: 20px;
    }

    .countdown-timer {
        gap: 30px;
    }

    .countdown-item {
        min-width: 100px;
    }

    .countdown-number {
        font-size: 64px;
    }

    .countdown-label {
        font-size: 16px;
    }

    .countdown-separator {
        font-size: 64px;
    }

    .countdown-button {
        padding: 18px 40px;
        font-size: 18px;
    }
}

/* Ajustes para telas médias */
@media (min-width: 768px) and (max-width: 1023px) {
    .countdown-content {
        padding: 50px;
    }

    .countdown-header h2 {
        font-size: 42px;
    }

    .countdown-number {
        font-size: 56px;
    }
}

/* Ajustes para telas pequenas */
@media (max-width: 767px) {
    .countdown-section {
        padding: 30px 15px;
    }

    .countdown-content {
        padding: 30px 20px;
    }

    .countdown-header h2 {
        font-size: 32px;
    }

    .countdown-subtitle {
        font-size: 16px;
    }

    .countdown-timer {
        gap: 15px;
    }

    .countdown-item {
        min-width: 60px;
    }

    .countdown-number {
        font-size: 36px;
    }

    .countdown-label {
        font-size: 12px;
    }

    .countdown-separator {
        font-size: 36px;
    }

    .countdown-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Animação do Contador */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.countdown-number {
    animation: pulse 2s infinite;
}

.countdown-button {
    position: relative;
    overflow: hidden;
}

.countdown-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}