* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(212, 175, 55, 0.01) 2px,
            rgba(212, 175, 55, 0.01) 4px
        );
    min-height: 100vh;
    color: #d4af37;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto !important;
    height: auto !important;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* Responsividade do container */
@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2.5rem;
    }
}

/* Melhorar espaçamento das seções - Mobile First */
section {
    position: relative;
    z-index: 1;
    width: 100%;
    scroll-margin-top: 70px;
}

@media (min-width: 768px) {
    section {
        scroll-margin-top: 80px;
    }
}

@media (min-width: 1024px) {
    section {
        scroll-margin-top: 90px;
    }
}

/* Garantir que seções fullscreen funcionem com melhor centralização */
section.min-h-screen {
    min-height: 100vh !important;
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Melhorar visual das seções com espaçamento adequado */
.appointment-section,
.professionals-section,
.amenities-section,
.benefits-section,
.extra-services-section {
    position: relative;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Tablet e Desktop */
@media (min-width: 768px) {
    section.min-h-screen {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .appointment-section,
    .professionals-section,
    .amenities-section,
    .benefits-section,
    .extra-services-section {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
}

/* Animações suaves para elementos */
.gallery-item,
.plan-card,
.benefit-card,
.amenity-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover,
.plan-card:hover,
.benefit-card:hover,
.amenity-card:hover {
    transform: translateY(-5px);
}

/* Melhorar visual do modal */
#loginModal .relative {
    max-height: 90vh;
    overflow-y: auto;
}

/* Smooth scroll para navegação */
html {
    scroll-padding-top: 80px;
}

/* Navegação */
.navbar {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(212, 175, 55, 0.1) inset;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    text-decoration: none !important;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.logo:hover,
.logo:visited,
.logo:active {
    text-decoration: none !important;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8)) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    z-index: 100;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 18px;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.nav-menu a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    padding: 4px 0;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu.active {
    display: flex;
}

/* Hero Section */
.hero {
    padding: 100px 20px 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    position: relative;
}

/* Galeria de Cortes - Design Luxuoso */
.gallery-section {
    margin-bottom: 100px;
    padding: 60px 20px;
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.section-header {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.title-decoration {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 0.75rem auto;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    display: block;
}

@media (min-width: 640px) {
    .title-decoration {
        width: 70px;
        margin: 1rem auto;
    }
}

@media (min-width: 768px) {
    .title-decoration {
        width: 80px;
        margin: 1rem auto;
    }
}

@media (min-width: 1024px) {
    .title-decoration {
        width: 100px;
        margin: 1.25rem auto;
    }
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    text-align: center;
    margin: 1rem 0;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 4px 8px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    display: block !important;
}

@media (min-width: 640px) {
    .gallery-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .gallery-title {
        font-size: 3rem;
        letter-spacing: 3px;
    }
}

@media (min-width: 1024px) {
    .gallery-title {
        font-size: 3.5rem;
    }
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.gallery-subtitle {
    font-size: 0.875rem;
    color: rgba(212, 175, 55, 0.8);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .gallery-subtitle {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
}

@media (min-width: 1024px) {
    .gallery-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
        margin-top: 10px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    width: 100%;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2.5rem;
        padding: 1.5rem;
    }
}

.premium-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.1) inset,
        0 0 60px rgba(212, 175, 55, 0.05);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.premium-card:hover::before {
    opacity: 1;
}

.premium-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.4) inset,
        0 0 100px rgba(212, 175, 55, 0.3),
        0 0 150px rgba(212, 175, 55, 0.1);
}

.featured-gallery {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.7),
        0 0 0 2px rgba(212, 175, 55, 0.2) inset,
        0 0 80px rgba(212, 175, 55, 0.15);
}

.featured-gallery:hover {
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.9),
        0 0 0 2px rgba(212, 175, 55, 0.6) inset,
        0 0 120px rgba(212, 175, 55, 0.4),
        0 0 200px rgba(212, 175, 55, 0.2);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.premium-card:hover .gallery-image-wrapper img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.1) contrast(1.2);
}

.image-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

.premium-card:hover .image-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.gallery-content {
    padding: 30px 25px;
    background: rgba(10, 10, 10, 0.95);
    position: relative;
    z-index: 2;
}

.gallery-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #d4af37;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.gallery-badge.highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(212, 175, 55, 0.2));
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.premium-card:hover .gallery-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.2));
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.gallery-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.gallery-item-desc {
    font-size: 0.95rem;
    color: rgba(212, 175, 55, 0.7);
    line-height: 1.6;
    margin-top: 8px;
    font-weight: 300;
}

.gallery-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
    margin-top: 20px;
    transition: width 0.4s ease;
}

.premium-card:hover .gallery-divider {
    width: 100%;
}

.gallery-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.premium-card:hover .gallery-glow {
    width: 150%;
    height: 150%;
}

.header {
    text-align: center;
    position: relative;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    position: relative;
    animation: shimmer 3s ease-in-out infinite;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .title {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .title {
        font-size: 4rem;
        margin-bottom: 25px;
        letter-spacing: 3px;
    }
}

.slogan {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(212, 175, 55, 0.85);
    letter-spacing: 1px;
    max-width: 700px;
    margin: 0 auto;
    text-transform: uppercase;
    line-height: 1.6;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .slogan {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
}

@media (min-width: 768px) {
    .slogan {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .slogan {
        font-size: 1.3rem;
        letter-spacing: 2px;
        line-height: 1.8;
    }
}

/* Plans Section */
.plans-section {
    padding: 60px 20px;
}

.plans-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

@media (min-width: 640px) {
    .plans-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .plans-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
}

.plan-card {
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.1) inset,
        0 0 60px rgba(212, 175, 55, 0.05);
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.4) inset,
        0 0 100px rgba(212, 175, 55, 0.3),
        0 0 150px rgba(212, 175, 55, 0.1);
}

.plan-card.featured {
    border-width: 2px;
    border-color: rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 0 2px rgba(212, 175, 55, 0.3) inset,
        0 0 80px rgba(212, 175, 55, 0.2);
}

.plan-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.9),
        0 0 0 2px rgba(212, 175, 55, 0.6) inset,
        0 0 120px rgba(212, 175, 55, 0.4),
        0 0 200px rgba(212, 175, 55, 0.2);
}

.banner {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4af37, #f4d03f, #d4af37);
    background-size: 200% 100%;
    color: #0a0a0a;
    padding: 10px 35px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    border-radius: 25px;
    box-shadow: 
        0 6px 20px rgba(212, 175, 55, 0.5),
        0 0 30px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    clip-path: polygon(8% 0%, 92% 0%, 100% 100%, 0% 100%);
    animation: shimmerBanner 3s ease-in-out infinite;
    text-transform: uppercase;
    z-index: 10;
}

@keyframes shimmerBanner {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.banner.popular {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
}

.banner.bestseller {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
}

.banner.premium {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
}

.plan-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.icon {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4af37;
    margin: 30px 0;
    letter-spacing: 1px;
}

.price .period {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
}

.features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    min-height: 150px;
}

.features li {
    padding: 12px 0;
    font-size: 1rem;
    color: #d4af37;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.95;
}

.checkmark {
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #d4af37, #f4d03f, #d4af37);
    background-size: 200% 100%;
    color: #0a0a0a;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 25px;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.subscribe-btn:hover::before {
    left: 100%;
}

.subscribe-btn:hover {
    background-position: 100% 50%;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(212, 175, 55, 0.7),
        0 0 60px rgba(212, 175, 55, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.subscribe-btn:active {
    transform: translateY(-1px);
    box-shadow: 
        0 6px 20px rgba(212, 175, 55, 0.6),
        0 0 40px rgba(212, 175, 55, 0.4);
}

@media (max-width: 968px) {
    .title {
        font-size: 2.5rem;
    }

    .plans-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
}

/* Appointment Section */
.appointment-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

.appointment-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    pointer-events: none;
}

.section-subtitle {
    font-size: 0.875rem;
    color: rgba(212, 175, 55, 0.7);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    text-align: center;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
        letter-spacing: 1.5px;
        margin-top: 10px;
    }
}

.appointment-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.appointment-form {
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.2) inset,
        0 0 120px rgba(212, 175, 55, 0.1),
        0 0 200px rgba(212, 175, 55, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.appointment-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.appointment-form:hover::before {
    opacity: 1;
}

.appointment-form:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.9),
        0 0 0 1px rgba(212, 175, 55, 0.3) inset,
        0 0 150px rgba(212, 175, 55, 0.2),
        0 0 250px rgba(212, 175, 55, 0.1);
}

/* Mensagem de login necessário */
.login-required-message {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(212, 175, 55, 0.1) inset,
        0 0 100px rgba(212, 175, 55, 0.05);
    text-align: center;
}

.login-required-content {
    max-width: 500px;
    margin: 0 auto;
}

.login-required-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.login-required-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 15px;
    font-weight: 700;
}

.login-required-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 45px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.15);
    position: relative;
    transition: all 0.3s ease;
}

.form-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.form-section:hover::after {
    width: 100%;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section:last-of-type::after {
    display: none;
}

.form-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    position: relative;
    padding-bottom: 15px;
}

.form-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.form-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .form-section-title {
        font-size: 2rem;
        margin-bottom: 30px;
        gap: 15px;
        letter-spacing: 1.5px;
    }
    
    .appointment-form {
        border-radius: 28px;
        padding: 60px 50px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #d4af37;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.form-group:focus-within label {
    color: #f4d03f;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.form-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: rgba(212, 175, 55, 0.6);
    font-style: italic;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    padding: 16px 20px;
    color: #d4af37;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(212, 175, 55, 0.5);
    font-style: italic;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 
        0 0 0 4px rgba(212, 175, 55, 0.15),
        0 10px 30px rgba(212, 175, 55, 0.3),
        inset 0 0 20px rgba(212, 175, 55, 0.05);
    background: rgba(10, 10, 10, 0.98);
    transform: translateY(-2px);
}

.form-group input:hover:not(:focus),
.form-group select:hover:not(:focus),
.form-group textarea:hover:not(:focus) {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown),
.form-group input.valid,
.form-group textarea.valid {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 
        0 0 0 3px rgba(34, 197, 94, 0.1),
        0 5px 15px rgba(34, 197, 94, 0.2);
}

.form-group input:invalid:not(:placeholder-shown):not(:focus),
.form-group input.invalid {
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 
        0 0 0 3px rgba(239, 68, 68, 0.1),
        0 5px 15px rgba(239, 68, 68, 0.2);
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.form-group select option:disabled {
    color: rgba(212, 175, 55, 0.3);
    font-style: italic;
}

.form-group select option[value="sem-horarios"] {
    color: rgba(239, 68, 68, 0.8);
    font-style: italic;
    text-align: center;
    font-weight: 600;
    background: rgba(239, 68, 68, 0.1);
}

.form-group select option.horario-ocupado {
    color: rgba(212, 175, 55, 0.3);
    text-decoration: line-through;
}

.form-group select:disabled {
    cursor: wait;
    opacity: 0.7;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Aviso de tolerância */
.tolerance-warning {
    display: block;
    margin-top: 8px;
    padding: 10px 14px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    color: #ffc107;
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 500;
    animation: pulseWarning 2s ease-in-out infinite;
}

@keyframes pulseWarning {
    0%, 100% {
        border-color: rgba(255, 193, 7, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.2);
    }
    50% {
        border-color: rgba(255, 193, 7, 0.5);
        box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1);
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.service-option {
    cursor: pointer;
    position: relative;
}

.service-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.service-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease;
}

.service-name {
    color: rgba(212, 175, 55, 0.8);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.service-option input[type="checkbox"]:checked + .service-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-color: rgba(212, 175, 55, 0.8);
    box-shadow: 
        0 12px 35px rgba(212, 175, 55, 0.4),
        0 0 0 4px rgba(212, 175, 55, 0.15) inset,
        0 0 50px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px) scale(1.02);
}

.service-option input[type="checkbox"]:checked + .service-card::before {
    opacity: 1;
}

.service-option input[type="checkbox"]:checked + .service-card .service-icon {
    transform: scale(1.3) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.3) rotate(5deg); }
    50% { transform: scale(1.4) rotate(-5deg); }
}

.service-option input[type="checkbox"]:checked + .service-card .service-name {
    color: #d4af37;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.service-option:hover .service-card {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.25),
        0 0 30px rgba(212, 175, 55, 0.1);
}

/* Submit Button */
.form-submit {
    margin-top: 40px;
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #d4af37, #f4d03f, #d4af37);
    background-size: 200% 100%;
    color: #0a0a0a;
    border: none;
    border-radius: 18px;
    padding: 20px 60px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 12px 40px rgba(212, 175, 55, 0.6),
        0 0 60px rgba(212, 175, 55, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    animation: shimmerBanner 3s ease-in-out infinite;
    min-width: 280px;
    justify-content: center;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    background-position: 100% 50%;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.8),
        0 0 90px rgba(212, 175, 55, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.5),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.6),
        0 0 50px rgba(212, 175, 55, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-btn.loading {
    pointer-events: none;
}

.submit-btn.loading .btn-text::after {
    content: '...';
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

.btn-icon {
    font-size: 1.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.submit-btn:hover .btn-icon {
    transform: scale(1.3) rotate(360deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.submit-btn:active .btn-icon {
    transform: scale(1.1) rotate(360deg);
}

.form-note {
    color: rgba(212, 175, 55, 0.6);
    font-size: 0.85rem;
    margin-top: 15px;
    font-style: italic;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.success-content {
    background: rgba(15, 15, 15, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.2) inset,
        0 0 100px rgba(212, 175, 55, 0.3);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: #0a0a0a;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.success-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.success-content p {
    color: rgba(212, 175, 55, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.close-success-btn {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a0a;
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.close-success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Professionals Section */
.professionals-section {
    padding: 100px 20px;
    background: rgba(10, 10, 10, 0.7);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    backdrop-filter: blur(10px);
}

.professionals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.professionals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    width: 100%;
}

@media (min-width: 640px) {
    .professionals-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .professionals-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2.5rem;
    }
}

.professional-card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.professional-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.professional-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.5);
}

.professional-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.professional-card:hover .professional-image-wrapper img {
    transform: scale(1.05);
    object-position: center 25%;
}

/* Ajuste específico para a imagem do Eduardo */
.professional-img-eduardo {
    object-position: center 10% !important;
}

.professional-card:hover .professional-img-eduardo {
    object-position: center 5% !important;
}

.professional-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.professional-badge {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #0a0a0a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.professional-content {
    padding: 30px;
    text-align: center;
}

.professional-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.professional-title {
    font-size: 1rem;
    color: rgba(212, 175, 55, 0.7);
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.professional-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 0 auto 20px;
}

.professional-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.professional-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.skill-tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.professional-card:hover .skill-tag {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.professional-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.professional-card:hover .professional-glow {
    opacity: 1;
}

/* Amenities Section */
.amenities-section {
    padding: 100px 20px;
    background: rgba(10, 10, 10, 0.7);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    backdrop-filter: blur(10px);
}

.amenities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.amenities-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .amenities-header {
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 768px) {
    .amenities-header {
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .amenities-header {
        margin-bottom: 50px;
    }
}

.amenities-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-align: center;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 4px 8px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .amenities-title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 768px) {
    .amenities-title {
        font-size: 3rem;
        letter-spacing: 3px;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .amenities-title {
        font-size: 3.5rem;
        margin-bottom: 15px;
    }
}

.amenities-subtitle {
    font-size: 0.875rem;
    color: rgba(212, 175, 55, 0.7);
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .amenities-subtitle {
        font-size: 0.95rem;
    }
}

@media (min-width: 768px) {
    .amenities-subtitle {
        font-size: 1rem;
        letter-spacing: 1.5px;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .amenities-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
    width: 100%;
}

@media (min-width: 480px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }
}

.amenity-card {
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.1) inset,
        0 0 60px rgba(212, 175, 55, 0.05);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .amenity-card {
        padding: 2.5rem 2rem;
        border-radius: 18px;
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .amenity-card {
        padding: 35px 25px;
        border-radius: 20px;
        gap: 20px;
    }
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.amenity-card:hover::before {
    opacity: 1;
}

.amenity-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(212, 175, 55, 0.4) inset,
        0 0 80px rgba(212, 175, 55, 0.3),
        0 0 120px rgba(212, 175, 55, 0.1);
}

.amenity-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: #d4af37;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

@media (min-width: 768px) {
    .amenity-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 1.25rem;
    }
}

@media (min-width: 1024px) {
    .amenity-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 20px;
    }
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.amenity-name {
    font-size: 0.95rem;
    color: rgba(212, 175, 55, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .amenity-name {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .amenity-name {
        font-size: 1.1rem;
    }
}

.amenity-card:hover .amenity-name {
    color: #d4af37;
    font-weight: 600;
}

/* Modal de Informações */
.amenity-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.amenity-modal.active {
    display: flex;
}

.amenity-modal-content {
    background: rgba(15, 15, 15, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.2) inset,
        0 0 100px rgba(212, 175, 55, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.amenity-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.amenity-modal-close:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
    transform: rotate(90deg);
}

.amenity-modal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.amenity-modal-content p {
    color: rgba(212, 175, 55, 0.8);
    line-height: 1.8;
    font-size: 1.05rem;
}

.amenity-modal-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.amenity-modal-content li {
    color: rgba(212, 175, 55, 0.8);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.amenity-modal-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Login/Register Modal */
.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.login-modal.active,
.login-modal.flex {
    display: flex !important;
}

.login-modal.hidden {
    display: none !important;
}

.login-modal-content {
    background: rgba(15, 15, 15, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.2) inset,
        0 0 100px rgba(212, 175, 55, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.login-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 1;
}

.login-modal-close:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
    transform: rotate(90deg);
}

/* Login Tabs */
.login-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.login-tab {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: rgba(212, 175, 55, 0.6);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    position: relative;
}

.login-tab.active {
    color: #d4af37;
    border-bottom-color: #d4af37;
}

.login-tab:hover {
    color: #d4af37;
}

/* Login Form */
.login-form-container {
    display: none;
}

.login-form-container.active {
    display: block;
}

.login-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 10px;
    text-align: center;
    letter-spacing: 1px;
}

.login-subtitle {
    color: rgba(212, 175, 55, 0.7);
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Social Login Buttons */
.social-login-btn {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.8);
    color: #d4af37;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.social-login-btn:hover {
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.social-login-btn svg {
    width: 20px;
    height: 20px;
}

.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    color: rgba(212, 175, 55, 0.5);
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.login-divider span {
    padding: 0 15px;
    font-size: 0.9rem;
}

.login-submit-btn {
    width: 100%;
    margin-top: 20px;
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    color: rgba(212, 175, 55, 0.7);
    font-size: 0.9rem;
}

.login-footer a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Profile Section */
.profile-section {
    padding: 100px 20px;
    background: rgba(10, 10, 10, 0.7);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    backdrop-filter: blur(10px);
    min-height: 60vh;
}

.profile-header {
    text-align: center;
    margin-bottom: 50px;
}

.profile-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.profile-subtitle {
    font-size: 1rem;
    color: rgba(212, 175, 55, 0.7);
    font-weight: 300;
    letter-spacing: 1px;
}

.profile-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.profile-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.profile-card:hover::before {
    opacity: 1;
}

.profile-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
}

.profile-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.profile-info {
    display: grid;
    gap: 20px;
}

.profile-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.profile-info-item:last-child {
    border-bottom: none;
}

.profile-label {
    color: rgba(212, 175, 55, 0.7);
    font-weight: 500;
    font-size: 1rem;
}

.profile-value {
    color: #d4af37;
    font-weight: 600;
    font-size: 1rem;
    text-align: right;
}

.profile-subscriptions,
.profile-appointments {
    display: grid;
    gap: 20px;
}

.subscription-item,
.appointment-item {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.subscription-item:hover,
.appointment-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.appointment-item.upcoming {
    border-left: 3px solid rgba(34, 197, 94, 0.6);
}

.appointment-item.today {
    border-left: 3px solid rgba(212, 175, 55, 0.8);
    background: rgba(212, 175, 55, 0.05);
}

.appointment-item.past {
    border-left: 3px solid rgba(212, 175, 55, 0.3);
    opacity: 0.7;
}

.appointment-info {
    flex: 1;
}

.appointment-date-time {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.appointment-date {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.appointment-time {
    color: rgba(212, 175, 55, 0.8);
    font-weight: 500;
    font-size: 1rem;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.appointment-service {
    color: rgba(212, 175, 55, 0.8);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.appointment-professional {
    color: rgba(212, 175, 55, 0.8);
    font-size: 0.9rem;
    margin-top: 8px;
    font-weight: 500;
}

.appointment-notes {
    color: rgba(212, 175, 55, 0.6);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.appointment-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.appointment-status.upcoming {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.appointment-status.today {
    background: rgba(212, 175, 55, 0.3);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.appointment-status.past {
    background: rgba(212, 175, 55, 0.1);
    color: rgba(212, 175, 55, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.subscription-info,
.appointment-info {
    flex: 1;
}

.subscription-name,
.appointment-date {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.subscription-price,
.appointment-service {
    color: rgba(212, 175, 55, 0.7);
    font-size: 0.95rem;
}

.subscription-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.subscription-status.active {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.no-subscription,
.no-appointment {
    text-align: center;
    color: rgba(212, 175, 55, 0.5);
    font-style: italic;
    padding: 40px 20px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.profile-appointments {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 20px;
    background: rgba(10, 10, 10, 0.6);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    backdrop-filter: blur(10px);
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 4px 8px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
        letter-spacing: 2px;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
        letter-spacing: 3px;
        margin-bottom: 50px;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

.benefit-card {
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .benefit-card {
        padding: 2.5rem 2rem;
        border-radius: 18px;
    }
}

@media (min-width: 1024px) {
    .benefit-card {
        padding: 40px 30px;
    }
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(212, 175, 55, 0.3) inset,
        0 0 80px rgba(212, 175, 55, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .benefit-icon {
        font-size: 2.75rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .benefit-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #d4af37;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .benefit-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .benefit-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}

.benefit-card p {
    color: #d4af37;
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .benefit-card p {
        font-size: 0.95rem;
    }
}

@media (min-width: 1024px) {
    .benefit-card p {
        font-size: 1rem;
    }
}

/* Extra Services Section */
.extra-services-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.extra-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.extra-services-notice {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .extra-services-notice {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 2rem;
        gap: 1.5rem;
        border-radius: 20px;
        margin: 2.5rem auto;
    }
}

@media (min-width: 1024px) {
    .extra-services-notice {
        padding: 30px;
        margin: 40px auto;
        gap: 20px;
    }
}

.notice-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

@media (min-width: 768px) {
    .notice-icon {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .notice-icon {
        font-size: 3rem;
    }
}

.notice-content {
    flex: 1;
}

.notice-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

@media (min-width: 640px) {
    .notice-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 768px) {
    .notice-title {
        font-size: 1.6rem;
    }
}

@media (min-width: 1024px) {
    .notice-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
}

.notice-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
}

@media (min-width: 640px) {
    .notice-text {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .notice-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }
}

.notice-text strong {
    color: #d4af37;
    font-weight: 700;
}

.extra-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .extra-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin: 2.5rem auto;
    }
}

@media (min-width: 1024px) {
    .extra-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin: 50px auto;
    }
}

.extra-service-card {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .extra-service-card {
        padding: 2.5rem 2rem;
        border-radius: 18px;
    }
}

@media (min-width: 1024px) {
    .extra-service-card {
        padding: 35px;
        border-radius: 20px;
    }
}

.extra-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.extra-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
}

.extra-service-card:hover::before {
    opacity: 1;
}

.extra-service-card.highlight-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-color: rgba(212, 175, 55, 0.5);
}

.extra-service-card.highlight-card::before {
    opacity: 1;
}

.extra-service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

@media (min-width: 640px) {
    .extra-service-icon {
        font-size: 3rem;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .extra-service-icon {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
}

.extra-service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

@media (min-width: 640px) {
    .extra-service-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .extra-service-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
}

.extra-service-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .extra-service-description {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .extra-service-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
}

.extra-service-description strong {
    color: #d4af37;
    font-weight: 700;
}

.extra-service-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.example-tag {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.example-tag.included {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.extra-service-card:hover .example-tag {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
}

.extra-services-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem auto 0;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .extra-services-warning {
        padding: 2rem;
        border-radius: 18px;
        margin: 2.5rem auto 0;
    }
}

@media (min-width: 1024px) {
    .extra-services-warning {
        padding: 30px;
        border-radius: 20px;
        margin: 50px auto 0;
    }
}

.warning-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.warning-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(239, 68, 68, 0.5));
}

.warning-text {
    flex: 1;
}

.warning-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.warning-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 15px;
}

.warning-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(239, 68, 68, 0.3);
}

.warning-contact a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.warning-contact a:hover {
    color: #f4d03f;
    text-decoration: underline;
}

/* Admin Dashboard */
.admin-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 40px 20px;
    position: relative;
}

.admin-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.admin-login-box {
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 50px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
}

.admin-login-header {
    text-align: center;
    margin-bottom: 40px;
}

.admin-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.admin-login-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.admin-login-subtitle {
    color: rgba(212, 175, 55, 0.7);
    font-size: 1rem;
    letter-spacing: 1px;
}

.admin-login-form .form-group {
    margin-bottom: 25px;
}

.admin-login-form label {
    display: block;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.admin-login-form input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    color: #d4af37;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.admin-login-form input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.admin-login-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #0a0a0a;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: 10px;
}

.admin-login-btn:hover {
    transform: scale(1.02);
}

.admin-error {
    color: #ef4444;
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
}

.admin-dashboard-content {
    max-width: 1400px;
    margin: 0 auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.admin-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.admin-subtitle {
    color: rgba(212, 175, 55, 0.7);
    font-size: 1.1rem;
}

.admin-logout-btn {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admin-logout-btn:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.6);
    transform: scale(1.05);
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.admin-stat-card {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.admin-stat-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.stat-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

.admin-filters {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    color: #d4af37;
    font-weight: 600;
    white-space: nowrap;
}

.filter-input {
    padding: 10px 15px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: #d4af37;
    font-size: 0.95rem;
}

.filter-input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.refresh-btn {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #0a0a0a;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
    margin-left: auto;
}

.refresh-btn:hover {
    transform: scale(1.05);
}

.admin-appointments {
    margin-bottom: 40px;
}

.admin-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.admin-appointments-list {
    display: grid;
    gap: 20px;
}

.admin-appointment-item {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.admin-appointment-item:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.appointment-time-badge {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #0a0a0a;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    min-width: 80px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-details {
    flex: 1;
}

.appointment-header-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.appointment-client-name {
    font-size: 1.4rem;
    color: #d4af37;
    margin: 0;
    font-weight: 700;
}

.plano-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.plano-badge.vip {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0a0a0a;
    border: 2px solid #ffd700;
}

.plano-badge.premium {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #0a0a0a;
    border: 2px solid #d4af37;
}

.plano-badge.basico {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: #ffffff;
    border: 2px solid #6c757d;
}

.plano-badge.avulso {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: #ffffff;
    border: 2px solid #17a2b8;
}

.plano-badge.sem-plano {
    background: rgba(108, 117, 125, 0.3);
    color: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(108, 117, 125, 0.5);
}

.appointment-info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.info-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.appointment-services {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.appointment-services strong {
    color: #d4af37;
}

.appointment-notes {
    color: rgba(212, 175, 55, 0.8);
    font-style: italic;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.no-appointments {
    text-align: center;
    color: rgba(212, 175, 55, 0.6);
    padding: 40px;
    font-size: 1.1rem;
}

/* Clientes com Planos Assinados */
.admin-clients-section {
    margin-bottom: 40px;
}

.admin-clients-list {
    display: grid;
    gap: 20px;
}

.admin-client-item {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.admin-client-item:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.client-main-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 20px;
    flex-wrap: wrap;
}

.client-name-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.client-name {
    font-size: 1.4rem;
    color: #d4af37;
    margin: 0;
    font-weight: 700;
}

.client-plano-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.client-plano-badge.vip {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #0a0a0a;
    border: 2px solid #ffd700;
}

.client-plano-badge.premium {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #0a0a0a;
    border: 2px solid #d4af37;
}

.client-plano-badge.basico {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: #ffffff;
    border: 2px solid #6c757d;
}

.client-plano-badge.avulso {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: #ffffff;
    border: 2px solid #17a2b8;
}

.client-plano-badge.sem-plano {
    background: rgba(108, 117, 125, 0.3);
    color: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(108, 117, 125, 0.5);
}

.client-contact-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.client-info-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.client-subscription-details {
    display: flex;
    gap: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    flex-wrap: wrap;
}

.subscription-detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.detail-value {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.95rem;
}

.no-clients {
    text-align: center;
    color: rgba(212, 175, 55, 0.6);
    padding: 40px;
    font-size: 1.1rem;
}

.admin-additional-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.admin-stat-card-large {
    background: rgba(10, 10, 10, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 30px;
}

.stat-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.stats-breakdown {
    display: grid;
    gap: 15px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border-left: 4px solid #d4af37;
}

.stat-item-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.stat-item-value {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .admin-login-box {
        padding: 30px 20px;
    }

    .admin-title {
        font-size: 2rem;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }

    .refresh-btn {
        margin-left: 0;
        width: 100%;
    }

    .admin-appointment-item {
        flex-direction: column;
    }

    .appointment-time-badge {
        width: 100%;
    }

    .appointment-header-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .plano-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .client-main-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .client-name-section {
        width: 100%;
    }

    .client-contact-info {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .client-subscription-details {
        flex-direction: column;
        gap: 10px;
    }

    .client-plano-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .admin-additional-stats {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 70px 20px 35px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-section p {
    color: #d4af37;
    opacity: 0.8;
    margin-bottom: 10px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    color: #d4af37;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #d4af37;
    opacity: 0.7;
}

@media (max-width: 1200px) {
    .nav-menu {
        gap: 14px;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-img {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 12px;
    }

    .nav-menu a {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        display: none;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 10px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .hero {
        padding: 60px 20px 40px;
    }

    .gallery-section {
        margin-bottom: 60px;
        padding: 40px 15px;
    }

    .gallery-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .gallery-subtitle {
        font-size: 0.95rem;
    }

    .professionals-section {
        padding: 60px 20px;
    }

    .professionals-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .professional-image-wrapper {
        height: 350px;
    }

    .professional-name {
        font-size: 1.75rem;
    }

    .extra-services-section {
        padding: 60px 20px;
    }

    .extra-services-notice {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .notice-icon {
        font-size: 2.5rem;
    }

    .notice-title {
        font-size: 1.5rem;
    }

    .notice-text {
        font-size: 1rem;
    }

    .extra-services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .extra-service-card {
        padding: 25px;
    }

    .extra-services-warning {
        padding: 25px;
    }

    .warning-content {
        flex-direction: column;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .gallery-image-wrapper {
        height: 350px;
    }

    .gallery-content {
        padding: 25px 20px;
    }

    .gallery-item-title {
        font-size: 1.5rem;
    }

    .title {
        font-size: 2.5rem;
    }

    .slogan {
        font-size: 1rem;
    }

    .plans-section {
        padding: 40px 20px;
    }

    .appointment-section {
        padding: 60px 20px;
    }

    .appointment-form {
        padding: 40px 30px;
        border-radius: 24px;
    }
    
    .form-section-title {
        font-size: 1.6rem;
    }
    
    .form-icon {
        font-size: 1.5rem;
    }
    
    .submit-btn {
        min-width: 100%;
        padding: 18px 40px;
        font-size: 1.05rem;
    }

    .form-section-title {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-section {
        padding: 60px 20px;
    }

    .amenities-title {
        font-size: 2.5rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .benefits-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.3rem;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .professionals-section {
        padding: 60px 20px;
    }

    .professionals-grid {
        gap: 25px;
    }

    .professional-image-wrapper {
        height: 300px;
    }

    .professional-content {
        padding: 20px;
    }

    .professional-name {
        font-size: 1.5rem;
    }

    .professional-description {
        font-size: 0.9rem;
    }

    .extra-services-section {
        padding: 40px 15px;
    }

    .extra-services-notice {
        padding: 20px;
    }

    .notice-title {
        font-size: 1.3rem;
    }

    .notice-text {
        font-size: 0.95rem;
    }

    .extra-service-card {
        padding: 20px;
    }

    .extra-service-title {
        font-size: 1.4rem;
    }

    .extra-service-description {
        font-size: 0.9rem;
    }

    .warning-text h4 {
        font-size: 1.3rem;
    }

    .warning-text p {
        font-size: 0.9rem;
    }

    .gallery-section {
        margin-bottom: 40px;
        padding: 30px 10px;
    }

    .gallery-title {
        font-size: 2rem;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }

    .gallery-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .title-decoration {
        width: 60px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image-wrapper {
        height: 300px;
    }

    .gallery-content {
        padding: 25px 20px;
    }

    .gallery-item-title {
        font-size: 1.4rem;
    }

    .gallery-item-desc {
        font-size: 0.9rem;
    }

    .title {
        font-size: 2rem;
    }

    .slogan {
        font-size: 0.95rem;
    }

    .plan-title {
        font-size: 2rem;
    }

    .price {
        font-size: 1.8rem;
    }

    .plan-card {
        padding: 30px 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .appointment-section {
        padding: 40px 15px;
    }

    .appointment-form {
        padding: 35px 25px;
        border-radius: 22px;
    }
    
    .form-section-title {
        font-size: 1.4rem;
        gap: 10px;
    }
    
    .form-icon {
        font-size: 1.3rem;
    }
    
    .submit-btn {
        min-width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .form-section {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }

    .form-section-title {
        font-size: 1.3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .success-content {
        padding: 40px 25px;
        margin: 0 15px;
    }

    .success-content h3 {
        font-size: 1.6rem;
    }

    .amenities-section {
        padding: 40px 15px;
    }

    .amenities-title {
        font-size: 2rem;
    }

    .amenities-subtitle {
        font-size: 0.9rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .amenity-card {
        padding: 30px 20px;
    }

    .amenity-icon {
        width: 48px;
        height: 48px;
    }

    .amenity-name {
        font-size: 1rem;
    }

    .amenity-modal-content {
        padding: 40px 25px;
        margin: 0 15px;
    }

    .amenity-modal-content h3 {
        font-size: 1.6rem;
    }

    .login-modal-content {
        padding: 30px 20px;
        max-width: 90%;
    }

    .login-title {
        font-size: 1.6rem;
    }

    .profile-section {
        padding: 60px 15px;
    }

    .profile-title {
        font-size: 2rem;
    }

    .profile-card {
        padding: 30px 20px;
    }

    .profile-card-title {
        font-size: 1.5rem;
    }

    .appointment-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .appointment-status {
        align-self: flex-start;
    }

    .appointment-date-time {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .profile-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .profile-value {
        text-align: left;
    }
}
