/* ============================================
   VARIÁVEIS CSS E RESET
   ============================================ */

:root {
    /* Cores Tema Escuro */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-pink: #ef7ab9;
    --accent-pink-hover: #eb6795;
    --accent-pink-light: #f5a8c9;
    --border-color: #333333;
    --shadow: rgba(239, 122, 185, 0.1);
    --shadow-hover: rgba(239, 122, 185, 0.3);
}

[data-theme="light"] {
    /* Cores Tema Claro */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #e8e8e8;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --accent-pink: #ef7ab9;
    --accent-pink-hover: #eb6795;
    --accent-pink-light: #f5a8c9;
    --border-color: #e0e0e0;
    --shadow: rgba(239, 122, 185, 0.2);
    --shadow-hover: rgba(239, 122, 185, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Garantir que imagens e vídeos não causem overflow */
img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(26, 26, 26, 0.95) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 0 40px rgba(239, 122, 185, 0.1);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--accent-pink), transparent) 1;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .header {
        overflow: visible;
    }
}

/* Garantir que header fique abaixo do menu mobile quando ativo */
@media (max-width: 768px) {
    body:has(.nav-menu.active) .header {
        z-index: 1000 !important;
    }
    
    /* Garantir que nenhuma seção fique acima do menu */
    body:has(.nav-menu.active) section {
        z-index: 1 !important;
    }
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 122, 185, 0.1), transparent);
    animation: headerShine 3s infinite;
    pointer-events: none;
}

@media (min-width: 769px) {
    .header {
        overflow-x: hidden;
    }
}

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

[data-theme="light"] .header {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(245, 245, 245, 0.95) 100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-pink), #eb6795, #ef7ab9);
    background-size: 200% 200%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(239, 122, 185, 0.4), 0 0 30px rgba(239, 122, 185, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite, logoPulse 2s ease-in-out infinite;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: logoRotate 3s linear infinite;
}

.logo-letter {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.15);
    box-shadow: 0 8px 30px rgba(239, 122, 185, 0.6), 0 0 40px rgba(239, 122, 185, 0.3);
    animation: gradientShift 3s ease infinite, logoPulseHover 0.6s ease;
}

.logo:hover .logo-letter {
    transform: scale(1.1);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes logoPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(239, 122, 185, 0.4), 0 0 30px rgba(239, 122, 185, 0.2);
    }
    50% {
        box-shadow: 0 6px 25px rgba(239, 122, 185, 0.6), 0 0 40px rgba(239, 122, 185, 0.3);
    }
}

@keyframes logoPulseHover {
    0% {
        transform: rotate(5deg) scale(1.15);
    }
    50% {
        transform: rotate(5deg) scale(1.2);
    }
    100% {
        transform: rotate(5deg) scale(1.15);
    }
}

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-pink), #eb6795, #ef7ab9);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin: 0;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite;
    filter: drop-shadow(0 2px 5px rgba(239, 122, 185, 0.3));
}

.logo:hover h1 {
    filter: drop-shadow(0 0 15px rgba(239, 122, 185, 0.6));
    transform: translateX(2px);
}

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

/* Garantir que no mobile o menu seja escondido por padrão */
@media (max-width: 768px) {
    .nav-menu:not(.active) {
        display: none !important;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 122, 185, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-pink), #eb6795);
    border-radius: 2px;
    transition: width 0.4s ease;
    box-shadow: 0 0 15px rgba(239, 122, 185, 0.6), 0 0 30px rgba(239, 122, 185, 0.3);
}

.nav-link:hover {
    color: var(--accent-pink);
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(239, 122, 185, 0.1), rgba(235, 103, 149, 0.05));
    box-shadow: 0 4px 15px rgba(239, 122, 185, 0.2), inset 0 0 20px rgba(239, 122, 185, 0.1);
}

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

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

.icon-link {
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.icon-link {
    position: relative;
}

.icon-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(239, 122, 185, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease;
}

.icon-link:hover::before {
    width: 40px;
    height: 40px;
}

.icon-link:hover {
    color: var(--accent-pink);
    transform: translateY(-3px) scale(1.1);
}

.btn-privacy {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ef7ab9, #eb6795);
    color: #1a1a1a;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(239, 122, 185, 0.3);
}

.btn-privacy:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(235, 103, 149, 0.5);
    background: linear-gradient(135deg, #ef7ab9, #eb6795);
}

.btn-privacy i {
    font-size: 0.9rem;
}

.btn-privacy span {
    font-size: 0.85rem;
}

[data-theme="light"] .btn-privacy {
    color: #1a1a1a;
}

.btn-vip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ef7ab9, #eb6795);
    color: #1a1a1a;
    border: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(239, 122, 185, 0.3);
}

.btn-vip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(235, 103, 149, 0.5);
    background: linear-gradient(135deg, #ef7ab9, #eb6795);
}

.btn-vip i {
    font-size: 0.9rem;
}

.btn-vip span {
    font-size: 0.85rem;
}

[data-theme="light"] .btn-vip {
    color: #1a1a1a;
}

.theme-toggle {
    background: transparent;
    border: 2px solid var(--accent-pink);
    color: var(--accent-pink);
    padding: 0.5rem 0.8rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background: var(--accent-pink);
    color: var(--bg-primary);
    box-shadow: 0 0 15px var(--shadow-hover);
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10000;
    position: relative;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--accent-pink);
    transform: scale(1.1);
}

/* ============================================
   HOME SECTION
   ============================================ */

.home-section {
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.home-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 122, 185, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBackground 8s ease-in-out infinite;
    z-index: 0;
}

.home-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(235, 103, 149, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBackground 10s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes floatBackground {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.home-section > .container {
    position: relative;
    z-index: 1;
}

.home-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--accent-pink), #eb6795, var(--accent-pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    filter: drop-shadow(0 2px 10px rgba(239, 122, 185, 0.3));
    position: relative;
    transition: all 0.3s ease;
}

.headline:hover {
    filter: drop-shadow(0 4px 20px rgba(239, 122, 185, 0.5));
    transform: translateX(5px);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-pink);
    animation: fadeInUp 1s ease 0.3s both;
}

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

.home-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.home-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 180px;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    letter-spacing: 0.5px;
}

.home-buttons a.btn {
    text-decoration: none;
}

#btnVerConteudo {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#btnVerConteudo::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

#btnVerConteudo:hover::after {
    transform: translateX(5px);
}

#btnWhatsApp {
    font-weight: 600;
}

.home-media {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.home-media .media-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 3px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    font-size: 3rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(239, 122, 185, 0.1);
    padding: 0;
}

.home-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.home-media .media-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(239, 122, 185, 0.2), transparent);
    transform: rotate(45deg);
    animation: shimmerMedia 3s infinite;
}

.home-media .media-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(239, 122, 185, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes shimmerMedia {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.home-media .media-placeholder:hover {
    border-color: var(--accent-pink);
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 80px rgba(239, 122, 185, 0.3), inset 0 0 40px rgba(239, 122, 185, 0.1);
}

.home-media .media-placeholder:hover .home-image {
    transform: scale(1.1);
    filter: brightness(1.1) drop-shadow(0 0 30px rgba(239, 122, 185, 0.5));
}

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

.home-media .media-placeholder p {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-pink);
    text-shadow: 0 0 10px rgba(239, 122, 185, 0.5);
}

.media-placeholder.large {
    aspect-ratio: 4/5;
    min-height: 400px;
}

.media-placeholder p {
    margin-top: 1rem;
    font-size: 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-pink), #eb6795);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 4px 20px rgba(239, 122, 185, 0.4), 0 0 30px rgba(239, 122, 185, 0.2);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite, buttonPulse 2s ease-in-out infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(239, 122, 185, 0.6), 0 0 50px rgba(239, 122, 185, 0.4);
    animation: gradientShift 3s ease infinite, buttonPulseHover 0.6s ease;
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.02);
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(239, 122, 185, 0.4), 0 0 30px rgba(239, 122, 185, 0.2);
    }
    50% {
        box-shadow: 0 6px 25px rgba(239, 122, 185, 0.5), 0 0 40px rgba(239, 122, 185, 0.3);
    }
}

@keyframes buttonPulseHover {
    0% {
        transform: translateY(-3px) scale(1.05);
    }
    50% {
        transform: translateY(-4px) scale(1.08);
    }
    100% {
        transform: translateY(-3px) scale(1.05);
    }
}

.btn-secondary {
    background: transparent;
    color: var(--accent-pink);
    border: 2px solid var(--accent-pink);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-pink);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    background: var(--accent-pink);
    color: var(--bg-primary);
    box-shadow: 0 6px 25px rgba(239, 122, 185, 0.5), 0 0 40px rgba(239, 122, 185, 0.3);
    transform: translateY(-3px) scale(1.05);
    border-color: var(--accent-pink);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-secondary i,
.btn-secondary span {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-secondary:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Estilo específico para botão WhatsApp */
#btnWhatsApp:hover i {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 0 10px rgba(239, 122, 185, 0.5));
}

.btn-card {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    width: 100%;
    margin-top: 1rem;
}

.btn-card:hover {
    background: var(--accent-pink);
    color: white;
    border-color: var(--accent-pink);
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 4rem 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.servicos-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--accent-pink), #eb6795, var(--accent-pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    position: relative;
    filter: drop-shadow(0 2px 10px rgba(239, 122, 185, 0.3));
}

.servicos-section .section-title {
    margin-bottom: 4rem;
    font-size: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.servicos-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-pink), transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(239, 122, 185, 0.6);
    animation: titleLine 2s ease-in-out infinite;
}

@keyframes titleLine {
    0%, 100% {
        width: 100px;
        opacity: 1;
    }
    50% {
        width: 150px;
        opacity: 0.8;
    }
}

/* ============================================
   SERVIÇOS SECTION
   ============================================ */

.servicos-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    width: 100%;
    max-width: 100%;
}

.servicos-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 122, 185, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatService 8s ease-in-out infinite;
    z-index: 0;
}

.servicos-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(235, 103, 149, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatService 10s ease-in-out infinite reverse;
    z-index: 0;
}

@keyframes floatService {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

.servicos-section > .container {
    position: relative;
    z-index: 1;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.servico-card {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-tertiary) 100%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: cardFadeIn 0.6s ease-out backwards;
}

.servico-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    z-index: 2;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.servico-card:hover .servico-badge {
    opacity: 1;
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 4px 10px rgba(239, 122, 185, 0.5));
}

.servico-card:nth-child(1) {
    animation-delay: 0.1s;
}

.servico-card:nth-child(2) {
    animation-delay: 0.2s;
}

.servico-card:nth-child(3) {
    animation-delay: 0.3s;
}

.servico-card:nth-child(4) {
    animation-delay: 0.4s;
}

.servico-card:nth-child(5) {
    animation-delay: 0.5s;
}

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

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 122, 185, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.servico-card:hover::before {
    left: 100%;
}

.servico-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 122, 185, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.servico-card:hover::after {
    opacity: 1;
    animation: cardGlow 2s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.servico-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(239, 122, 185, 0.4), 0 0 60px rgba(239, 122, 185, 0.2);
    border-color: var(--accent-pink);
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-primary) 100%);
}

.servico-icon {
    font-size: 2.8rem;
    color: var(--accent-pink);
    margin: 0 0 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(239, 122, 185, 0.1), rgba(235, 103, 149, 0.05));
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid rgba(239, 122, 185, 0.3);
    box-shadow: 0 5px 20px rgba(239, 122, 185, 0.2);
}

.servico-card:hover .servico-icon {
    transform: scale(1.3) rotate(10deg);
    background: linear-gradient(135deg, rgba(239, 122, 185, 0.2), rgba(235, 103, 149, 0.15));
    border-color: var(--accent-pink);
    box-shadow: 0 8px 30px rgba(239, 122, 185, 0.5), 0 0 40px rgba(239, 122, 185, 0.3);
    animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(239, 122, 185, 0.5), 0 0 40px rgba(239, 122, 185, 0.3);
    }
    50% {
        box-shadow: 0 10px 35px rgba(239, 122, 185, 0.7), 0 0 50px rgba(239, 122, 185, 0.5);
    }
}

/* Ícones específicos com cores diferentes */
.servico-card[data-servico="personalizados"] .servico-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 193, 7, 0.05));
    border-color: rgba(255, 215, 0, 0.3);
    color: #ffd700;
}

.servico-card[data-servico="personalizados"]:hover .servico-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.15));
    border-color: #ffd700;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3);
}

.servico-card[data-servico="plaquinhas"] .servico-icon {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.05));
    border-color: rgba(255, 20, 147, 0.3);
    color: #ff1493;
}

.servico-card[data-servico="plaquinhas"]:hover .servico-icon {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 105, 180, 0.15));
    border-color: #ff1493;
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.5), 0 0 40px rgba(255, 20, 147, 0.3);
}

.servico-card[data-servico="video"] .servico-icon {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(30, 144, 255, 0.05));
    border-color: rgba(0, 191, 255, 0.3);
    color: #00bfff;
}

.servico-card[data-servico="video"]:hover .servico-icon {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.2), rgba(30, 144, 255, 0.15));
    border-color: #00bfff;
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.5), 0 0 40px rgba(0, 191, 255, 0.3);
}

.servico-card[data-servico="sexting"] .servico-icon {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 140, 0, 0.05));
    border-color: rgba(255, 69, 0, 0.3);
    color: #ff4500;
}

.servico-card[data-servico="sexting"]:hover .servico-icon {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2), rgba(255, 140, 0, 0.15));
    border-color: #ff4500;
    box-shadow: 0 8px 30px rgba(255, 69, 0, 0.5), 0 0 40px rgba(255, 69, 0, 0.3);
}

.servico-card[data-servico="avaliacao"] .servico-icon {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.1), rgba(34, 139, 34, 0.05));
    border-color: rgba(50, 205, 50, 0.3);
    color: #32cd32;
}

.servico-card[data-servico="avaliacao"]:hover .servico-icon {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.2), rgba(34, 139, 34, 0.15));
    border-color: #32cd32;
    box-shadow: 0 8px 30px rgba(50, 205, 50, 0.5), 0 0 40px rgba(50, 205, 50, 0.3);
}

.servico-card h3 {
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    padding: 0;
    color: var(--text-primary);
    text-align: center;
    width: 100%;
    display: block;
    align-self: stretch;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    font-weight: 700;
    transition: color 0.3s ease;
}

.servico-card:hover h3 {
    color: var(--accent-pink);
    text-shadow: 0 0 10px rgba(239, 122, 185, 0.3);
}

.servico-card[data-servico="personalizados"] {
    text-align: center !important;
}

.servico-card[data-servico="personalizados"] h3 {
    text-align: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-indent: 0 !important;
    direction: ltr !important;
    float: none !important;
    clear: both !important;
    align-self: center !important;
    text-align-last: center !important;
}

.servico-card[data-servico="personalizados"] h3 span {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.servico-card p {
    color: var(--text-secondary);
    margin: 0.5rem 0 1.2rem 0;
    padding: 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.servico-card:hover p {
    color: var(--text-primary);
}

.servico-card .btn-card {
    position: relative;
    z-index: 1;
    margin-top: auto;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.servico-card:hover .btn-card {
    background: linear-gradient(135deg, var(--accent-pink), #eb6795);
    color: white;
    border-color: var(--accent-pink);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(239, 122, 185, 0.4);
    animation: buttonShine 1.5s ease-in-out infinite;
}

@keyframes buttonShine {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(239, 122, 185, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(239, 122, 185, 0.6), 0 0 30px rgba(239, 122, 185, 0.3);
    }
}

/* ============================================
   PACKS SECTION
   ============================================ */

.packs-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    background-image: url('https://i.imgur.com/MDPNP3q.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    width: 100%;
    max-width: 100%;
}

.packs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 0;
}

[data-theme="light"] .packs-section::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(245, 245, 245, 0.9) 100%);
}

.packs-section::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 122, 185, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatPack 9s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.packs-decoration-bottom {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(235, 103, 149, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatPack 11s ease-in-out infinite reverse;
    z-index: 1;
    pointer-events: none;
}


@keyframes floatPack {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(25px, -25px) scale(1.1);
    }
}

.packs-section > .container {
    position: relative;
    z-index: 2;
}

.packs-section .section-title {
    margin-bottom: 4rem;
    font-size: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.packs-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-pink), transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(239, 122, 185, 0.6);
    animation: titleLine 2s ease-in-out infinite;
}

.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.pack-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: packFadeIn 0.6s ease-out backwards;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.pack-card:nth-child(1) { animation-delay: 0.1s; }
.pack-card:nth-child(2) { animation-delay: 0.2s; }
.pack-card:nth-child(3) { animation-delay: 0.3s; }
.pack-card:nth-child(4) { animation-delay: 0.4s; }
.pack-card:nth-child(5) { animation-delay: 0.5s; }
.pack-card:nth-child(6) { animation-delay: 0.6s; }
.pack-card:nth-child(7) { animation-delay: 0.7s; }
.pack-card:nth-child(8) { animation-delay: 0.8s; }
.pack-card:nth-child(9) { animation-delay: 0.9s; }

@keyframes packFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 122, 185, 0.15), transparent);
    transition: left 0.7s ease;
    z-index: 1;
    pointer-events: none;
}

.pack-card:hover::before {
    left: 100%;
}

.pack-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 122, 185, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.pack-card:hover::after {
    opacity: 1;
    animation: packGlow 2.5s ease-in-out infinite;
}

@keyframes packGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.pack-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(239, 122, 185, 0.4), 0 0 60px rgba(239, 122, 185, 0.2);
    border-color: var(--accent-pink);
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
}

.pack-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    z-index: 3;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    animation: badgeFloatPack 3.5s ease-in-out infinite;
}

@keyframes badgeFloatPack {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(8deg);
    }
}

.pack-card:hover .pack-badge {
    opacity: 1;
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 4px 15px rgba(239, 122, 185, 0.6));
}

.pack-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    border-radius: 20px;
}

.pack-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Estilo para vídeo nos packs */
.pack-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pack-card:hover .pack-media video {
    transform: scale(1.1);
}

.pack-media .media-placeholder {
    border: none;
    border-radius: 0;
    aspect-ratio: 16/9;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.pack-card:hover .pack-media .media-placeholder {
    transform: scale(1.1);
}

.pack-content {
    padding: 1rem 1.2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    backdrop-filter: blur(5px);
    border-radius: 0 0 20px 20px;
}

.pack-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease;
}

.pack-card:hover .pack-content h3 {
    color: var(--accent-pink);
    text-shadow: 0 0 10px rgba(239, 122, 185, 0.3);
}

.pack-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-pink);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(239, 122, 185, 0.6);
    margin-bottom: 0.4rem;
    transition: all 0.3s ease;
}

.pack-card:hover .pack-price {
    filter: drop-shadow(0 0 8px rgba(239, 122, 185, 0.5));
    transform: scale(1.05);
}

.pack-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    font-size: 0.75rem;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease;
}

.pack-card:hover .pack-description {
    color: #ffffff;
}

.pack-card .btn {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    margin-top: 0;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pack-card:hover .btn {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 122, 185, 0.5);
    animation: buttonShine 1.5s ease-in-out infinite;
}

/* ============================================
   SOBRE SECTION
   ============================================ */

.sobre-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    width: 100%;
    max-width: 100%;
}

.sobre-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(239, 122, 185, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(239, 122, 185, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.sobre-media {
    position: relative;
    animation: floatInLeft 0.8s ease-out;
}

.sobre-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(239, 122, 185, 0.3),
                0 0 0 4px rgba(239, 122, 185, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-primary);
}

.sobre-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(239, 122, 185, 0.4),
                0 0 0 6px rgba(239, 122, 185, 0.2);
}

.sobre-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sobre-image-wrapper:hover .sobre-image {
    transform: scale(1.05);
}

.sobre-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        transparent 70%, 
        rgba(239, 122, 185, 0.1) 100%);
    pointer-events: none;
    border-radius: 20px;
    transition: opacity 0.5s ease;
}

.sobre-image-wrapper:hover .sobre-image-overlay {
    opacity: 0.8;
}

.sobre-text {
    animation: floatInRight 0.8s ease-out;
}

.sobre-text .section-title {
    background: linear-gradient(135deg, var(--accent-pink), #eb6795);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.sobre-text .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-pink), transparent);
    border-radius: 2px;
    animation: expandLine 1s ease-out 0.5s both;
}

.sobre-text p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.sobre-text p:nth-child(2) {
    animation-delay: 0.3s;
}

.sobre-text p:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes floatInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

/* ============================================
   ASSINATURAS SECTION
   ============================================ */

.assinaturas-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--bg-primary) 0%, 
        rgba(239, 122, 185, 0.03) 25%,
        var(--bg-secondary) 50%,
        rgba(239, 122, 185, 0.03) 75%,
        var(--bg-primary) 100%);
    padding: 6rem 0;
    width: 100%;
    max-width: 100%;
}

.assinaturas-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 30%, rgba(239, 122, 185, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 70%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(239, 122, 185, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 10s ease-in-out infinite;
}

.assinaturas-title {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.vip-text {
    background: linear-gradient(135deg, var(--accent-pink), #eb6795, #ff69b4, var(--accent-pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    font-weight: 800;
}

.assinaturas-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.assinaturas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.assinatura-card {
    background: var(--bg-primary);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: cardFadeInUp 0.6s ease-out forwards;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.assinatura-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 122, 185, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.assinatura-card:nth-child(1) { animation-delay: 0.1s; }
.assinatura-card:nth-child(2) { animation-delay: 0.2s; }
.assinatura-card:nth-child(3) { animation-delay: 0.3s; }
.assinatura-card:nth-child(4) { animation-delay: 0.4s; }

.assinatura-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(239, 122, 185, 0.3),
                0 0 0 3px rgba(239, 122, 185, 0.2);
    border-color: var(--accent-pink);
}

.assinatura-card:hover::before {
    opacity: 1;
}

.assinatura-card.premium {
    border-color: rgba(239, 122, 185, 0.7);
    background: linear-gradient(135deg, var(--bg-primary), rgba(239, 122, 185, 0.15));
    position: relative;
    box-shadow: 0 8px 30px rgba(239, 122, 185, 0.2);
}

.assinatura-card.premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 3px;
    background: linear-gradient(135deg, #ff69b4, var(--accent-pink), #eb6795, #ff69b4);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.assinatura-card.premium:hover {
    border-color: var(--accent-pink);
    background: linear-gradient(135deg, var(--bg-primary), rgba(239, 122, 185, 0.25));
    box-shadow: 0 15px 50px rgba(239, 122, 185, 0.4);
}

.assinatura-card.premium:hover::after {
    opacity: 1;
}

.premium-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff69b4, var(--accent-pink), #eb6795);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(239, 122, 185, 0.6);
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}


.assinatura-badge {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(239, 122, 185, 0.3));
}

.assinatura-card.premium .assinatura-badge {
    filter: drop-shadow(0 6px 12px rgba(239, 122, 185, 0.6));
    transform: scale(1.1);
}

.assinatura-card:hover .assinatura-badge {
    animation: bounce 0.5s ease-in-out;
    transform: scale(1.2);
}

.assinatura-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.assinatura-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.assinatura-card:hover .assinatura-header h3 {
    background: linear-gradient(135deg, var(--accent-pink), #eb6795);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.assinatura-card.premium .assinatura-header h3 {
    background: linear-gradient(135deg, #ff69b4, var(--accent-pink), #eb6795);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.assinatura-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(239, 122, 185, 0.1), rgba(239, 122, 185, 0.05));
    border-radius: 15px;
    transition: all 0.3s ease;
}

.assinatura-card:hover .assinatura-price {
    background: linear-gradient(135deg, rgba(239, 122, 185, 0.2), rgba(239, 122, 185, 0.1));
    transform: scale(1.05);
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-pink);
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
}

.assinatura-card.premium .price-value {
    color: #ff69b4;
    text-shadow: 0 2px 10px rgba(239, 122, 185, 0.5);
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.brinde-badge {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border-radius: 12px;
    color: #ffa500;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: shimmer 2s ease-in-out infinite;
}

.brinde-badge i {
    font-size: 1.5rem;
    animation: giftBounce 2s ease-in-out infinite;
    margin-bottom: 0.3rem;
}

.brinde-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    width: 100%;
}

.brinde-text strong {
    font-size: 0.95rem;
    color: #ff8c00;
    font-weight: 700;
    line-height: 1.3;
}

.brinde-text small {
    font-size: 0.75rem;
    color: #ffa500;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.2;
}

.assinatura-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.assinatura-features li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    animation: fadeInLeft 0.5s ease-out forwards;
    transition: all 0.3s ease;
}

.assinatura-features li:nth-child(1) { animation-delay: 0.1s; }
.assinatura-features li:nth-child(2) { animation-delay: 0.2s; }
.assinatura-features li:nth-child(3) { animation-delay: 0.3s; }
.assinatura-features li:nth-child(4) { animation-delay: 0.4s; }

.assinatura-features li:hover {
    color: var(--accent-pink);
    transform: translateX(5px);
}

.assinatura-features li i {
    color: #25d366;
    font-size: 1.1rem;
    flex-shrink: 0;
    animation: checkPulse 2s ease-in-out infinite;
}

.btn-assinar {
    background: linear-gradient(135deg, var(--accent-pink), #eb6795);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(239, 122, 185, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-assinar span {
    white-space: nowrap;
}

.btn-assinar::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;
}

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

.btn-assinar:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(239, 122, 185, 0.5);
    background: linear-gradient(135deg, #eb6795, var(--accent-pink));
}

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

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

.btn-assinar.premium-btn {
    background: linear-gradient(135deg, #ff69b4, var(--accent-pink), #eb6795);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.btn-assinar.premium-btn:hover {
    box-shadow: 0 12px 30px rgba(255, 105, 180, 0.6);
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(239, 122, 185, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(239, 122, 185, 0.6);
    }
}

@keyframes shimmer {
    0%, 100% {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    }
    50% {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15));
    }
}

@keyframes giftBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-10deg);
    }
    75% {
        transform: translateY(-5px) rotate(10deg);
    }
}

@keyframes checkPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

/* ============================================
   REDES SECTION
   ============================================ */

.redes-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(239, 122, 185, 0.05) 0%, 
        var(--bg-secondary) 25%,
        var(--bg-primary) 50%,
        var(--bg-secondary) 75%,
        rgba(255, 69, 0, 0.05) 100%);
    padding: 5rem 0;
}

.redes-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(239, 122, 185, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(239, 122, 185, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(225, 48, 108, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 105, 180, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundPulse 8s ease-in-out infinite;
}

.redes-title {
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.8s ease-out;
    background: linear-gradient(135deg, var(--accent-pink), #eb6795);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

.redes-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-pink), transparent);
    border-radius: 2px;
    animation: expandLineCenter 1s ease-out 0.5s both;
}

.redes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.rede-card {
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: cardFadeInUp 0.6s ease-out forwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rede-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 122, 185, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.rede-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.rede-card:nth-child(1) { animation-delay: 0.1s; }
.rede-card:nth-child(2) { animation-delay: 0.2s; }
.rede-card:nth-child(3) { animation-delay: 0.3s; }
.rede-card:nth-child(4) { animation-delay: 0.4s; }
.rede-card:nth-child(5) { animation-delay: 0.5s; }
.rede-card:nth-child(6) { animation-delay: 0.6s; }

.rede-card:hover {
    transform: translateY(-12px) scale(1.05);
}

.rede-card:hover::before {
    opacity: 1;
}

.rede-card:hover i,
.rede-card:hover svg {
    transform: scale(1.2) rotate(5deg);
    animation: iconBounce 0.6s ease;
}

.rede-card:hover span {
    transform: translateY(-2px);
}

.rede-card i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(239, 122, 185, 0.3));
}

.rede-card svg {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(239, 122, 185, 0.3));
}

.rede-card span {
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

/* Cores específicas para cada rede social - Estado Normal */
.rede-card[title="Fansly"] {
    border-color: rgba(255, 69, 0, 0.3);
    background: linear-gradient(135deg, var(--bg-primary), rgba(255, 69, 0, 0.05));
}

.rede-card[title="Fansly"] i {
    color: #ff4500;
    filter: drop-shadow(0 2px 8px rgba(255, 69, 0, 0.4));
}

.rede-card[title="Fansly"]:hover {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.15), rgba(255, 69, 0, 0.05));
    border-color: #ff4500;
    color: #ff4500;
    box-shadow: 0 20px 50px rgba(255, 69, 0, 0.4),
                0 0 0 3px rgba(255, 69, 0, 0.2);
}

.rede-card[title="Fansly"]:hover::after {
    background: linear-gradient(135deg, #ff4500, #ff6347);
    opacity: 1;
}

.rede-card[title="WhatsApp"] {
    border-color: rgba(25, 211, 84, 0.3);
    background: linear-gradient(135deg, var(--bg-primary), rgba(25, 211, 84, 0.05));
}

.rede-card[title="WhatsApp"] i {
    color: #19d354;
    filter: drop-shadow(0 2px 8px rgba(25, 211, 84, 0.4));
}

.rede-card[title="WhatsApp"]:hover {
    background: linear-gradient(135deg, rgba(25, 211, 84, 0.15), rgba(25, 211, 84, 0.05));
    border-color: #19d354;
    color: #19d354;
    box-shadow: 0 20px 50px rgba(25, 211, 84, 0.4),
                0 0 0 3px rgba(25, 211, 84, 0.2);
}

.rede-card[title="WhatsApp"]:hover::after {
    background: linear-gradient(135deg, #19d354, #25d366);
    opacity: 1;
}

.rede-card[title="X (Twitter)"] {
    border-color: rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--bg-primary), rgba(0, 0, 0, 0.05));
}

.rede-card[title="X (Twitter)"] i,
.rede-card[title="X (Twitter)"] svg {
    color: #000;
    fill: #000;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.rede-card[title="X (Twitter)"]:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.05));
    border-color: #000;
    color: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
                0 0 0 3px rgba(0, 0, 0, 0.2);
}

.rede-card[title="X (Twitter)"]:hover::after {
    background: linear-gradient(135deg, #000, #333);
    opacity: 1;
}

.rede-card[title="Instagram"] {
    border-color: rgba(225, 48, 108, 0.3);
    background: linear-gradient(135deg, var(--bg-primary), rgba(225, 48, 108, 0.05));
}

.rede-card[title="Instagram"] i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(225, 48, 108, 0.4));
}

.rede-card[title="Instagram"]:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(225, 48, 108, 0.05));
    border-color: #e1306c;
    color: #e1306c;
    box-shadow: 0 20px 50px rgba(225, 48, 108, 0.4),
                0 0 0 3px rgba(225, 48, 108, 0.2);
}

.rede-card[title="Instagram"]:hover::after {
    background: linear-gradient(135deg, #e1306c, #c13584);
    opacity: 1;
}

.rede-card[title="Telegram"] {
    border-color: rgba(37, 150, 190, 0.3);
    background: linear-gradient(135deg, var(--bg-primary), rgba(37, 150, 190, 0.05));
}

.rede-card[title="Telegram"] i {
    color: #2596be;
    filter: drop-shadow(0 2px 8px rgba(37, 150, 190, 0.4));
}

.rede-card[title="Telegram"]:hover {
    background: linear-gradient(135deg, rgba(37, 150, 190, 0.15), rgba(37, 150, 190, 0.05));
    border-color: #2596be;
    color: #2596be;
    box-shadow: 0 20px 50px rgba(37, 150, 190, 0.4),
                0 0 0 3px rgba(37, 150, 190, 0.2);
}

.rede-card[title="Telegram"]:hover::after {
    background: linear-gradient(135deg, #2596be, #0088cc);
    opacity: 1;
}

.rede-card[title="Privacy"] {
    border-color: rgba(239, 122, 185, 0.3);
    background: linear-gradient(135deg, var(--bg-primary), rgba(239, 122, 185, 0.05));
}

.rede-card[title="Privacy"] svg {
    color: var(--accent-pink);
    filter: drop-shadow(0 2px 8px rgba(239, 122, 185, 0.4));
}

.rede-card[title="Privacy"]:hover {
    background: linear-gradient(135deg, rgba(239, 122, 185, 0.15), rgba(239, 122, 185, 0.05));
    border-color: var(--accent-pink);
    color: var(--accent-pink);
    box-shadow: 0 20px 50px rgba(239, 122, 185, 0.4),
                0 0 0 3px rgba(239, 122, 185, 0.2);
}

.rede-card[title="Privacy"]:hover::after {
    background: linear-gradient(135deg, var(--accent-pink), #eb6795);
    opacity: 1;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandLineCenter {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1.2) rotate(5deg);
    }
    50% {
        transform: scale(1.3) rotate(-5deg);
    }
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    position: relative;
    background: linear-gradient(135deg, 
        var(--bg-secondary) 0%, 
        rgba(239, 122, 185, 0.05) 50%,
        var(--bg-secondary) 100%);
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(239, 122, 185, 0.2);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-pink), 
        #eb6795, 
        var(--accent-pink), 
        transparent);
    animation: shimmerLine 3s ease-in-out infinite;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(239, 122, 185, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(239, 122, 185, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

.footer-brand {
    animation: fadeInUp 0.8s ease-out;
}

.footer-brand h3 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--accent-pink), #eb6795, #ff69b4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 800;
    animation: gradientShift 3s ease infinite;
    filter: drop-shadow(0 2px 4px rgba(239, 122, 185, 0.3));
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-brand:hover p {
    color: var(--text-primary);
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.footer-links h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-pink), transparent);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-pink);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::before {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: nowrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    justify-content: flex-start;
}

.social-icon {
    color: var(--text-secondary);
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(239, 122, 185, 0.05);
    border: 1px solid rgba(239, 122, 185, 0.1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 122, 185, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-icon:hover::before {
    width: 100px;
    height: 100px;
}

.social-icon svg {
    width: 1.8rem;
    height: 1.8rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icon[title="X"] svg {
    width: 1.6rem;
    height: 1.6rem;
}

.social-icon:hover {
    color: var(--accent-pink);
    transform: translateY(-5px) scale(1.15);
    background: rgba(239, 122, 185, 0.15);
    border-color: var(--accent-pink);
    box-shadow: 0 8px 20px rgba(239, 122, 185, 0.3);
}

.social-icon:hover svg {
    filter: drop-shadow(0 2px 4px rgba(239, 122, 185, 0.4));
}

/* Cores específicas para cada rede social no footer */
.social-icon[title="Fansly"]:hover {
    color: #ff4500;
    border-color: #ff4500;
    background: rgba(255, 69, 0, 0.1);
}

.social-icon[title="WhatsApp"]:hover {
    color: #19d354;
    border-color: #19d354;
    background: rgba(25, 211, 84, 0.1);
}

.social-icon[title="X"]:hover,
.social-icon[title="X (Twitter)"]:hover {
    color: #000;
    border-color: #000;
    background: rgba(0, 0, 0, 0.1);
}

.social-icon[title="Instagram"]:hover {
    color: #e1306c;
    border-color: #e1306c;
    background: rgba(225, 48, 108, 0.1);
}

.social-icon[title="Telegram"]:hover {
    color: #2596be;
    border-color: #2596be;
    background: rgba(37, 150, 190, 0.1);
}

.social-icon[title="Privacy"]:hover {
    color: var(--accent-pink);
    border-color: var(--accent-pink);
    background: rgba(239, 122, 185, 0.15);
}

@keyframes shimmerLine {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* ============================================
   MODALS
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background-color: var(--bg-primary);
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--accent-pink);
}

.modal-content h2 {
    margin: 0 auto 1.5rem;
    color: var(--text-primary);
    font-size: 2rem;
    text-align: center;
    width: 100%;
    padding: 0;
    display: block;
    position: relative;
}

.modal-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 0 1rem;
}

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

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

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
}

.form-group textarea,
.form-group select {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-pink);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.radio-label:hover {
    border-color: var(--accent-pink);
    background-color: var(--bg-secondary);
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-pink);
}

.valor-display {
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    text-align: center;
}

.valor-display p {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.valor-display span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-pink);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
/* Desktop - Mostrar ícones sociais no rodapé */
@media (min-width: 769px) {
    .footer .footer-social {
        display: block;
    }

    .mobile-menu-social {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 1rem;
    }

    /* Garantir que o menu mobile funcione */
    @media (max-width: 768px) {
        .nav-menu:not(.active) {
            display: none !important;
        }
    }

    .headline {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

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

    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }

    .servico-card {
        padding: 1.8rem 1.2rem;
    }

    .servico-icon {
        width: 65px;
        height: 65px;
        font-size: 2.5rem;
    }

    .servico-card h3 {
        font-size: 1.2rem;
    }

    .servico-card p {
        font-size: 0.8rem;
    }

    .assinaturas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .assinaturas-section {
        padding: 4rem 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    /* FORÇAR hover no menu mobile - regra muito específica */
    #navMenu.nav-menu.active .mobile-menu-content .nav-link:hover,
    #navMenu.nav-menu.active .mobile-menu-content .nav-link:active,
    #navMenu.nav-menu.active .mobile-menu-content .nav-link:focus {
        background-color: rgba(239, 122, 185, 0.15) !important;
        background: rgba(239, 122, 185, 0.15) !important;
        color: var(--text-primary) !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .nav-menu {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 0;
        gap: 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
                    0 2px 8px rgba(0, 0, 0, 0.08);
        z-index: 99999;
        border-top: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, 
                    visibility 0.3s ease, 
                    max-height 0.3s ease;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        pointer-events: none;
        margin: 0;
    }

    .nav-menu.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 100vh !important;
        padding-top: 80px;
        padding-bottom: 2rem;
        overflow-y: auto;
        overflow-x: hidden;
        pointer-events: auto !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        min-height: 100vh !important;
        z-index: 99999 !important;
        transform: none !important;
    }
    
    /* Garantir que links sejam clicáveis e responsivos */
    .nav-menu.active .nav-link {
        pointer-events: auto;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(239, 122, 185, 0.2);
    }

    .mobile-menu-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        animation: fadeInUp 0.5s ease-out;
        overflow: visible;
        position: relative;
        z-index: 1;
        height: 100%;
    }

    .mobile-menu-divider {
        height: 1px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            var(--border-color) 20%, 
            var(--border-color) 80%, 
            transparent 100%);
        margin: clamp(1rem, 3vw, 1.5rem) clamp(1.5rem, 4vw, 2rem);
        opacity: 0.5;
    }

    .mobile-menu-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: clamp(0.8rem, 2.5vw, 1.2rem);
        padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem);
        flex-wrap: wrap;
        opacity: 0;
        animation: fadeInUp 0.5s ease-out 0.4s forwards;
    }

    /* Esconder ícones sociais do rodapé no mobile */
    .footer .footer-social {
        display: none;
    }

    /* Garantir que ícones do menu mobile só apareçam no mobile */
    .mobile-menu-social {
        display: flex;
    }

    .mobile-social-icon {
        width: clamp(44px, 12vw, 56px);
        height: clamp(44px, 12vw, 56px);
        min-width: 44px;
        min-height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent-pink) 0%, #eb6795 50%, #d81b60 100%);
        border: 3px solid transparent;
        background-clip: padding-box;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: visible;
        box-shadow: 0 4px 15px rgba(239, 122, 185, 0.4),
                    0 2px 8px rgba(239, 122, 185, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .mobile-social-icon::before {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 50%;
        padding: 3px;
        background: linear-gradient(135deg, var(--accent-pink), #eb6795, #d81b60, var(--accent-pink));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .mobile-social-icon::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        transition: width 0.5s ease, height 0.5s ease;
    }

    .mobile-social-icon:hover::before {
        opacity: 1;
        animation: rotateBorder 3s linear infinite;
    }

    .mobile-social-icon:hover::after {
        width: 150%;
        height: 150%;
    }

    .mobile-social-icon i,
    .mobile-social-icon svg {
        position: relative;
        z-index: 2;
        font-size: clamp(1rem, 3vw, 1.3rem);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        color: white;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    }

    .mobile-social-icon svg {
        width: clamp(1rem, 3vw, 1.3rem);
        height: clamp(1rem, 3vw, 1.3rem);
        fill: white;
        stroke: white;
    }

    .mobile-social-icon:hover {
        transform: translateY(-8px) scale(1.2) rotate(5deg);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3),
                    0 6px 15px rgba(0, 0, 0, 0.2),
                    0 0 20px rgba(0, 0, 0, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .mobile-social-icon:hover i,
    .mobile-social-icon:hover svg {
        color: white;
        transform: scale(1.2) rotate(-5deg);
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }

    .mobile-social-icon:active {
        transform: translateY(-4px) scale(1.1) rotate(2deg);
        box-shadow: 0 6px 15px rgba(239, 122, 185, 0.4),
                    0 3px 8px rgba(239, 122, 185, 0.3);
    }

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

    /* Cores específicas para cada rede social no menu mobile */
    .mobile-social-icon[title="Fansly"] {
        background: linear-gradient(135deg, #ff4500 0%, #ff6b35 50%, #ff8c5a 100%);
        box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4),
                    0 2px 8px rgba(255, 69, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .mobile-social-icon[title="Fansly"]:hover {
        background: linear-gradient(135deg, #ff6b35 0%, #ff4500 50%, #ff8c5a 100%);
        box-shadow: 0 12px 30px rgba(255, 69, 0, 0.5),
                    0 6px 15px rgba(255, 69, 0, 0.4),
                    0 0 20px rgba(255, 69, 0, 0.3);
    }

    .mobile-social-icon[title="Fansly"]::before {
        background: linear-gradient(135deg, #ff4500, #ff6b35, #ff8c5a, #ff4500);
    }

    .mobile-social-icon[title="WhatsApp"] {
        background: linear-gradient(135deg, #19d354 0%, #25d366 50%, #128c7e 100%);
        box-shadow: 0 4px 15px rgba(25, 211, 84, 0.4),
                    0 2px 8px rgba(25, 211, 84, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .mobile-social-icon[title="WhatsApp"]:hover {
        background: linear-gradient(135deg, #25d366 0%, #19d354 50%, #128c7e 100%);
        box-shadow: 0 12px 30px rgba(25, 211, 84, 0.5),
                    0 6px 15px rgba(25, 211, 84, 0.4),
                    0 0 20px rgba(25, 211, 84, 0.3);
    }

    .mobile-social-icon[title="WhatsApp"]::before {
        background: linear-gradient(135deg, #19d354, #25d366, #128c7e, #19d354);
    }

    .mobile-social-icon[title="X"] {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4),
                    0 2px 8px rgba(0, 0, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .mobile-social-icon[title="X"]:hover {
        background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #333333 100%);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5),
                    0 6px 15px rgba(0, 0, 0, 0.4),
                    0 0 20px rgba(0, 0, 0, 0.3);
    }

    .mobile-social-icon[title="X"]::before {
        background: linear-gradient(135deg, #000000, #1a1a1a, #333333, #000000);
    }

    .mobile-social-icon[title="Instagram"] {
        background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #fcb045 100%);
        box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4),
                    0 2px 8px rgba(225, 48, 108, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .mobile-social-icon[title="Instagram"]:hover {
        background: linear-gradient(135deg, #fd1d1d 0%, #e1306c 50%, #fcb045 100%);
        box-shadow: 0 12px 30px rgba(225, 48, 108, 0.5),
                    0 6px 15px rgba(225, 48, 108, 0.4),
                    0 0 20px rgba(225, 48, 108, 0.3);
    }

    .mobile-social-icon[title="Instagram"]::before {
        background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045, #e1306c);
    }

    .mobile-social-icon[title="Telegram"] {
        background: linear-gradient(135deg, #2596be 0%, #0088cc 50%, #229ed9 100%);
        box-shadow: 0 4px 15px rgba(37, 150, 190, 0.4),
                    0 2px 8px rgba(37, 150, 190, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .mobile-social-icon[title="Telegram"]:hover {
        background: linear-gradient(135deg, #0088cc 0%, #2596be 50%, #229ed9 100%);
        box-shadow: 0 12px 30px rgba(37, 150, 190, 0.5),
                    0 6px 15px rgba(37, 150, 190, 0.4),
                    0 0 20px rgba(37, 150, 190, 0.3);
    }

    .mobile-social-icon[title="Telegram"]::before {
        background: linear-gradient(135deg, #2596be, #0088cc, #229ed9, #2596be);
    }

    .mobile-social-icon[title="Privacy"] {
        background: linear-gradient(135deg, var(--accent-pink) 0%, #eb6795 50%, #d81b60 100%);
        box-shadow: 0 4px 15px rgba(239, 122, 185, 0.4),
                    0 2px 8px rgba(239, 122, 185, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .mobile-social-icon[title="Privacy"]:hover {
        background: linear-gradient(135deg, #ff6ba8 0%, var(--accent-pink) 50%, #eb6795 100%);
        box-shadow: 0 12px 30px rgba(239, 122, 185, 0.5),
                    0 6px 15px rgba(239, 122, 185, 0.4),
                    0 0 20px rgba(239, 122, 185, 0.3);
    }

    .mobile-social-icon[title="Privacy"]::before {
        background: linear-gradient(135deg, var(--accent-pink), #eb6795, #d81b60, var(--accent-pink));
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-menu .nav-link {
        padding: clamp(1rem, 3vw, 1.3rem) clamp(1.5rem, 4vw, 2rem);
        width: calc(100% - clamp(1rem, 2vw, 1rem));
        margin: 0 clamp(0.5rem, 1vw, 0.5rem) clamp(0.5rem, 1vw, 0.75rem);
        text-align: left;
        display: block;
        font-size: clamp(1rem, 2.5vw, 1.15rem);
        font-weight: 500;
        border-radius: 14px;
        transition: background-color 0.3s ease;
        border: 1px solid rgba(239, 122, 185, 0.1);
        color: var(--text-secondary);
        background-color: transparent;
        position: relative;
        overflow: visible;
        opacity: 0;
        animation: slideInLeft 0.4s ease-out forwards;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03),
                    inset 0 1px 0 rgba(255, 255, 255, 0.05);
        cursor: pointer;
        z-index: 1;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .nav-menu .nav-link:nth-child(1) { animation-delay: 0.05s; }
    .nav-menu .nav-link:nth-child(2) { animation-delay: 0.1s; }
    .nav-menu .nav-link:nth-child(3) { animation-delay: 0.15s; }
    .nav-menu .nav-link:nth-child(4) { animation-delay: 0.2s; }
    .nav-menu .nav-link:nth-child(5) { animation-delay: 0.25s; }
    .nav-menu .nav-link:nth-child(6) { animation-delay: 0.3s; }

    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 0;
        background: linear-gradient(180deg, var(--accent-pink) 0%, #eb6795 50%, #d81b60 100%);
        border-radius: 0 6px 6px 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 10px rgba(239, 122, 185, 0.5),
                    inset 0 0 5px rgba(255, 255, 255, 0.3);
        z-index: 2;
    }

    .nav-menu .nav-link::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(239, 122, 185, 0.25) 50%, 
            transparent 100%);
        transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
        border-radius: 14px;
    }

    .nav-menu .nav-link span {
        position: relative;
        z-index: 3;
        display: inline-block;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* HOVER NO MENU MOBILE - REGRA SIMPLES E DIRETA */
    .nav-menu.active .nav-link:hover {
        background-color: rgba(239, 122, 185, 0.15) !important;
        color: var(--text-primary) !important;
    }

    .nav-menu.active .nav-link:active {
        background-color: rgba(239, 122, 185, 0.2) !important;
        color: var(--text-primary) !important;
    }


    @keyframes hoverGlow {
        0%, 100% {
            opacity: 1;
            transform: translateY(-50%) scaleY(1);
        }
        50% {
            opacity: 0.8;
            transform: translateY(-50%) scaleY(1.1);
        }
    }

    @keyframes waveEffect {
        0% {
            left: -100%;
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            left: 100%;
            opacity: 0;
        }
    }

    /* Link ativo - seção atual */
    .nav-menu .nav-link.active {
        background-color: rgba(239, 122, 185, 0.15) !important;
        color: var(--text-primary) !important;
        font-weight: 600 !important;
    }

    @keyframes pulseGlow {
        0%, 100% {
            box-shadow: 0 0 15px rgba(239, 122, 185, 0.7),
                        inset 0 0 8px rgba(255, 255, 255, 0.4),
                        0 0 25px rgba(239, 122, 185, 0.4);
        }
        50% {
            box-shadow: 0 0 25px rgba(239, 122, 185, 0.9),
                        inset 0 0 12px rgba(255, 255, 255, 0.6),
                        0 0 40px rgba(239, 122, 185, 0.6);
        }
    }

    /* Efeito de brilho adicional nos links */
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        position: relative;
    }

    .nav-menu .nav-link:hover::before,
    .nav-menu .nav-link.active::before {
        animation: pulseGlow 2s ease-in-out infinite, shimmer 3s ease-in-out infinite !important;
    }

    @keyframes shimmer {
        0% {
            background: linear-gradient(180deg, var(--accent-pink) 0%, #eb6795 50%, #d81b60 100%);
        }
        50% {
            background: linear-gradient(180deg, #ff6ba8 0%, var(--accent-pink) 50%, #eb6795 100%);
        }
        100% {
            background: linear-gradient(180deg, var(--accent-pink) 0%, #eb6795 50%, #d81b60 100%);
        }
    }

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

    .header-content {
        position: relative;
        gap: 1rem;
    }

    .header-icons {
        gap: 0.8rem;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .logo-letter {
        font-size: 1.4rem;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .btn-privacy span,
    .btn-vip span {
        display: none;
    }

    .btn-privacy,
    .btn-vip {
        padding: 0.5rem;
        border-radius: 50%;
        min-width: 40px;
        min-height: 40px;
        justify-content: center;
    }

    .home-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .home-media .media-placeholder {
        max-width: 300px;
        aspect-ratio: 9/16;
    }

    .headline {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .description {
        font-size: 1.15rem;
        line-height: 1.9;
    }

    .home-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .home-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .sobre-image-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .servicos-section {
        padding: 3rem 0;
    }

    .servicos-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .servico-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }

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

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

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

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

    .assinaturas-section {
        padding: 3rem 0;
    }

    .price-value {
        font-size: 2rem;
    }

    .packs-section {
        padding: 3rem 0;
    }

    .packs-section .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .redes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .redes-section {
        padding: 4rem 0;
    }

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

    .footer-brand,
    .footer-links,
    .footer-social {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

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

    .social-icons {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 0.8rem 0;
    }

    .header-content {
        gap: 0.5rem;
    }

    .header-icons {
        gap: 0.5rem;
    }

    .logo {
        gap: 0.4rem;
    }

    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .logo-letter {
        font-size: 1.1rem;
    }

    .logo h1 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .nav-link {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .btn-privacy,
    .btn-vip {
        padding: 0.4rem;
        min-width: 34px;
        min-height: 34px;
    }

    .btn-privacy i,
    .btn-vip i {
        font-size: 0.8rem;
    }

    .theme-toggle {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }

    .headline {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .servico-card,
    .pack-card,
    .mimo-card {
        padding: 1.5rem;
    }

    .servico-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }

    .servicos-section .section-title {
        font-size: 1.8rem;
    }

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

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

    .rede-card i {
        font-size: 2.5rem;
    }

    .rede-card svg {
        width: 2.5rem;
        height: 2.5rem;
    }

    .redes-section {
        padding: 3rem 0;
    }

    .modal-content {
        width: 98%;
        padding: 1.2rem;
        max-height: 95vh;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .sobre-content {
        gap: 1.5rem;
    }

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

    .sobre-image-wrapper {
        box-shadow: 0 15px 40px rgba(239, 122, 185, 0.25);
    }

    .home-media .media-placeholder {
        max-width: 250px;
        aspect-ratio: 9/16;
    }

    .media-placeholder {
        min-height: 200px;
    }
}

/* Mobile Extra Pequeno */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .logo-letter {
        font-size: 1rem;
    }

    .headline {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .description {
        font-size: 1rem;
        line-height: 1.8;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .btn-privacy,
    .btn-vip {
        min-width: 32px;
        min-height: 32px;
        padding: 0.3rem;
    }
}

/* ============================================
   HOVER MENU MOBILE - REGRA FINAL GARANTIDA
   ============================================ */
@media (max-width: 768px) {
    /* Desabilitar hover do desktop no mobile */
    .nav-menu .nav-link:hover {
        color: var(--text-secondary) !important;
        transform: none !important;
        background: transparent !important;
        background-color: transparent !important;
        box-shadow: none !important;
    }
    
    /* Aplicar hover apenas quando menu está ativo */
    /* Link ativo no menu mobile - fundo rosa claro */
    .nav-menu.active .nav-link.active {
        background-color: rgba(239, 122, 185, 0.15) !important;
        color: var(--text-primary) !important;
        font-weight: 600 !important;
    }
    
    /* Hover no menu mobile */
    .nav-menu.active .nav-link:hover {
        background-color: rgba(239, 122, 185, 0.1) !important;
        color: var(--text-primary) !important;
    }
}



