/* Reset e configurações básicas */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 25%, #2a0a2a 50%, #1a0a1a 75%, #0a0a0a 100%);
color: #ffffff;
overflow-x: hidden;
min-height: 100vh;
position: relative;
}

/* Background Animation Melhorado */
.background-animation {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
}

.stars {
background: #000 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="1" fill="white"/><circle cx="300" cy="200" r="1" fill="white"/><circle cx="500" cy="150" r="1" fill="white"/><circle cx="700" cy="300" r="1" fill="white"/><circle cx="900" cy="250" r="1" fill="white"/><circle cx="200" cy="400" r="1" fill="white"/><circle cx="400" cy="350" r="1" fill="white"/><circle cx="600" cy="450" r="1" fill="white"/><circle cx="800" cy="400" r="1" fill="white"/><circle cx="150" cy="600" r="1" fill="white"/><circle cx="350" cy="550" r="1" fill="white"/><circle cx="550" cy="650" r="1" fill="white"/><circle cx="750" cy="600" r="1" fill="white"/><circle cx="950" cy="700" r="1" fill="white"/><circle cx="250" cy="800" r="1" fill="white"/><circle cx="450" cy="750" r="1" fill="white"/><circle cx="650" cy="850" r="1" fill="white"/><circle cx="850" cy="800" r="1" fill="white"/><circle cx="50" cy="900" r="1" fill="white"/></svg>') repeat top center;
z-index: 0;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
animation: move-stars 200s linear infinite;
}

.twinkling {
background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="100" cy="100" r="1" fill="white" opacity="0.8"/><circle cx="300" cy="200" r="1" fill="white" opacity="0.6"/><circle cx="500" cy="150" r="1" fill="white" opacity="0.9"/><circle cx="700" cy="300" r="1" fill="white" opacity="0.7"/><circle cx="900" cy="250" r="1" fill="white" opacity="0.5"/></svg>') repeat top center;
z-index: 1;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
animation: twinkle 4s ease-in-out infinite alternate;
}

.clouds {
background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><ellipse cx="200" cy="100" rx="50" ry="20" fill="rgba(255,255,255,0.1)"/><ellipse cx="600" cy="150" rx="40" ry="15" fill="rgba(255,255,255,0.1)"/><ellipse cx="800" cy="80" rx="30" ry="12" fill="rgba(255,255,255,0.1)"/></svg>') repeat top center;
z-index: 2;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
animation: move-clouds 100s linear infinite;
}

@keyframes move-stars {
from { transform: translateY(0px); }
to { transform: translateY(-2000px); }
}

@keyframes twinkle {
from { opacity: 0.3; }
to { opacity: 1; }
}

@keyframes move-clouds {
from { transform: translateX(0px); }
to { transform: translateX(-1000px); }
}

/* Floating Hearts Melhorado */
.floating-hearts {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
}

.heart {
position: absolute;
font-size: 1.5rem;
animation: float-heart 8s ease-in-out infinite;
opacity: 0.6;
filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.5));
}

.heart:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 6s; }
.heart:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 7s; }
.heart:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 8s; }
.heart:nth-child(4) { left: 40%; animation-delay: 3s; animation-duration: 6.5s; }
.heart:nth-child(5) { left: 50%; animation-delay: 4s; animation-duration: 7.5s; }
.heart:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 8.5s; }
.heart:nth-child(7) { left: 70%; animation-delay: 6s; animation-duration: 6.8s; }
.heart:nth-child(8) { left: 80%; animation-delay: 7s; animation-duration: 7.2s; }

@keyframes float-heart {
0%, 100% {
transform: translateY(100vh) rotate(0deg) scale(0.8);
opacity: 0;
}
10% {
opacity: 0.8;
transform: translateY(90vh) rotate(45deg) scale(1);
}
50% {
transform: translateY(50vh) rotate(180deg) scale(1.2);
opacity: 1;
}
90% {
opacity: 0.8;
transform: translateY(10vh) rotate(315deg) scale(1);
}
100% {
transform: translateY(-100px) rotate(360deg) scale(0.8);
opacity: 0;
}
}

/* Novos Efeitos: Floating Sparkles */
.floating-sparkles {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 2;
}

.sparkle {
position: absolute;
width: 3px;
height: 3px;
background: linear-gradient(45deg, #ff6b9d, #ffffff, #ff6b9d);
border-radius: 50%;
animation: sparkle-float 10s linear infinite;
box-shadow: 0 0 10px rgba(255, 107, 157, 0.8);
}

.sparkle:nth-child(1) { left: 15%; animation-delay: 0s; }
.sparkle:nth-child(2) { left: 25%; animation-delay: 2s; }
.sparkle:nth-child(3) { left: 35%; animation-delay: 4s; }
.sparkle:nth-child(4) { left: 45%; animation-delay: 6s; }
.sparkle:nth-child(5) { left: 55%; animation-delay: 8s; }
.sparkle:nth-child(6) { left: 65%; animation-delay: 1s; }
.sparkle:nth-child(7) { left: 75%; animation-delay: 3s; }
.sparkle:nth-child(8) { left: 85%; animation-delay: 5s; }

@keyframes sparkle-float {
0% {
transform: translateY(100vh) translateX(0) scale(0);
opacity: 0;
}
10% {
opacity: 1;
transform: translateY(90vh) translateX(10px) scale(1);
}
50% {
transform: translateY(50vh) translateX(-10px) scale(1.5);
opacity: 1;
}
90% {
opacity: 1;
transform: translateY(10vh) translateX(5px) scale(1);
}
100% {
transform: translateY(-50px) translateX(0) scale(0);
opacity: 0;
}
}

/* Container */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 10;
}

/* Header */
.header {
padding: 20px 0;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

/* Header Buttons Melhorado */
.header-buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.policy-btn {
display: flex;
align-items: center;
gap: 8px;
padding: 12px 20px;
background: linear-gradient(135deg, #ff6b9d, #c44569);
color: white;
text-decoration: none;
border-radius: 25px;
font-weight: 500;
font-size: 0.9rem;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
position: relative;
overflow: hidden;
transform: translateY(0);
}

.policy-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
transition: left 0.6s ease;
}

.policy-btn:hover::before {
left: 100%;
}

.policy-btn:hover {
transform: translateY(-3px) scale(1.05);
box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

.policy-btn:active {
transform: translateY(-1px) scale(1.02);
}

.policy-btn i {
font-size: 1rem;
transition: transform 0.3s ease;
}

.policy-btn:hover i {
transform: rotate(360deg);
}

/* Navigation Melhorado */
.nav {
display: flex;
align-items: center;
gap: 30px;
flex-wrap: wrap;
}

.nav-brand {
display: flex;
align-items: center;
}

.logo-container {
position: relative;
width: 50px;
height: 50px;
cursor: pointer;
}

.logo {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
border: 3px solid #ff6b9d;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-glow {
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
border-radius: 50%;
background: linear-gradient(45deg, #ff6b9d, #c44569, #ff6b9d);
z-index: -1;
opacity: 0.5;
animation: logo-glow 3s ease-in-out infinite alternate;
}

.logo-container:hover .logo {
transform: scale(1.1) rotate(5deg);
border-color: #ffffff;
}

.logo-container:hover .logo-glow {
animation: logo-glow-hover 0.6s ease-in-out infinite alternate;
}

@keyframes logo-glow {
from { transform: scale(1); opacity: 0.5; }
to { transform: scale(1.1); opacity: 0.8; }
}

@keyframes logo-glow-hover {
from { transform: scale(1.1); opacity: 0.8; }
to { transform: scale(1.2); opacity: 1; }
}

.nav-links ul {
display: flex;
list-style: none;
gap: 20px;
flex-wrap: wrap;
}

.nav-link {
display: flex;
align-items: center;
gap: 8px;
color: #ffffff;
text-decoration: none;
font-weight: 500;
padding: 12px 18px;
border-radius: 20px;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
position: relative;
overflow: hidden;
}

.nav-link::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.3), transparent);
transition: left 0.5s ease;
}

.nav-link:hover::before {
left: 100%;
}

.nav-link:hover {
background: linear-gradient(135deg, #ff6b9d, #c44569);
transform: translateY(-3px) scale(1.05);
box-shadow: 0 8px 20px rgba(255, 107, 157, 0.4);
border-color: #ff6b9d;
}

.nav-link i {
font-size: 1.1rem;
transition: transform 0.3s ease;
}

.nav-link:hover i {
transform: scale(1.2) rotate(10deg);
}

/* Main Content */
.main-content {
min-height: calc(100vh - 120px);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 40px 0;
}

/* Hero Section Melhorado */
.hero {
text-align: center;
margin-bottom: 60px;
}

.hero-content {
max-width: 600px;
margin: 0 auto;
}

.profile-card {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border-radius: 30px;
padding: 40px;
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
position: relative;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(196, 69, 105, 0.1));
z-index: -1;
}

.profile-card:hover {
transform: translateY(-5px) scale(1.02);
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
border-color: rgba(255, 107, 157, 0.3);
}

.profile-image-container {
position: relative;
margin-bottom: 30px;
}

.profile-link {
display: inline-block;
position: relative;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-image {
width: 200px;
height: 200px;
border-radius: 50%;
object-fit: cover;
border: 5px solid #ff6b9d;
box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-glow {
position: absolute;
top: -10px;
left: -10px;
right: -10px;
bottom: -10px;
border-radius: 50%;
background: linear-gradient(45deg, #ff6b9d, #c44569, #ff6b9d);
z-index: -1;
opacity: 0.3;
animation: profile-glow 3s ease-in-out infinite alternate;
}

.profile-link:hover .profile-image {
transform: scale(1.1) rotate(5deg);
border-color: #ffffff;
box-shadow: 0 20px 50px rgba(255, 107, 157, 0.5);
}

.profile-link:hover .profile-glow {
animation: profile-glow-hover 0.8s ease-in-out infinite alternate;
}

@keyframes profile-glow {
from { transform: scale(1); opacity: 0.3; }
to { transform: scale(1.05); opacity: 0.6; }
}

@keyframes profile-glow-hover {
from { transform: scale(1.05); opacity: 0.6; }
to { transform: scale(1.15); opacity: 0.8; }
}

.profile-sparkles {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
}

.sparkle {
position: absolute;
width: 4px;
height: 4px;
background: #ff6b9d;
border-radius: 50%;
animation: sparkle 2s ease-in-out infinite;
box-shadow: 0 0 10px rgba(255, 107, 157, 0.8);
}

.sparkle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 30%; right: 20%; animation-delay: 0.5s; }
.sparkle:nth-child(3) { bottom: 30%; left: 30%; animation-delay: 1s; }
.sparkle:nth-child(4) { bottom: 20%; right: 30%; animation-delay: 1.5s; }

@keyframes sparkle {
0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
50% { opacity: 1; transform: scale(1.5) rotate(180deg); }
}

.profile-info {
text-align: center;
}

.profile-title {
margin-bottom: 20px;
display: flex;
flex-direction: column;
gap: 5px;
}

.title-text {
font-size: 2.5rem;
font-weight: 800;
background: linear-gradient(135deg, #ff6b9d, #c44569);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-shadow: 0 0 30px rgba(255, 107, 157, 0.5);
animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
from { filter: drop-shadow(0 0 10px rgba(255, 107, 157, 0.3)); }
to { filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.6)); }
}

.title-subtitle {
font-size: 1.2rem;
font-weight: 600;
color: #ffffff;
opacity: 0.8;
animation: subtitle-pulse 2s ease-in-out infinite;
}

@keyframes subtitle-pulse {
0%, 100% { opacity: 0.8; }
50% { opacity: 1; }
}

.profile-description {
font-size: 1.1rem;
color: #ffffff;
opacity: 0.9;
font-weight: 400;
}

.typing-text {
display: inline-block;
overflow: hidden;
white-space: nowrap;
border-right: 2px solid #ff6b9d;
animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

.cursor {
animation: blink 1s infinite;
}

@keyframes typing {
from { width: 0; }
to { width: 100%; }
}

@keyframes blink-caret {
from, to { border-color: transparent; }
50% { border-color: #ff6b9d; }
}

@keyframes blink {
0%, 50% { opacity: 1; }
51%, 100% { opacity: 0; }
}

/* Social Links Melhorado */
.social-links {
margin-top: 40px;
}

.social-container {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}

.social-btn {
display: flex;
align-items: center;
gap: 12px;
padding: 15px 25px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(15px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 25px;
text-decoration: none;
color: white;
font-weight: 500;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative;
overflow: hidden;
min-width: 160px;
justify-content: center;
transform: translateY(0);
}

.social-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
transition: left 0.6s ease;
}

.social-btn:hover::before {
left: 100%;
}

.social-btn:hover {
transform: translateY(-5px) scale(1.05);
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.social-btn.instagram:hover {
background: linear-gradient(135deg, #e4405f, #c13584);
border-color: #e4405f;
}

.social-btn.whatsapp:hover {
background: linear-gradient(135deg, #25d366, #128c7e);
border-color: #25d366;
}

.social-icon {
font-size: 1.5rem;
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn:hover .social-icon {
transform: scale(1.3) rotate(360deg);
}

.social-text {
font-size: 1rem;
font-weight: 600;
transition: transform 0.3s ease;
}

.social-btn:hover .social-text {
transform: scale(1.1);
}

.social-glow {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 25px;
opacity: 0;
transition: opacity 0.3s ease;
z-index: -1;
}

.social-btn:hover .social-glow {
opacity: 0.3;
}

.social-btn.instagram:hover .social-glow {
background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-btn.whatsapp:hover .social-glow {
background: linear-gradient(135deg, #25d366, #128c7e);
}

/* Loading Screen Melhorado */
.loading-screen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 50%, #0a0a0a 100%);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
opacity: 0;
visibility: hidden;
}

.loading-screen[style*="display: none"] {
display: none !important;
}

.loading-content {
text-align: center;
color: white;
animation: loading-content-float 2s ease-in-out infinite alternate;
}

@keyframes loading-content-float {
from { transform: translateY(0px); }
to { transform: translateY(-10px); }
}

.loading-logo {
width: 100px;
height: 100px;
margin: 0 auto 20px;
border-radius: 50%;
overflow: hidden;
border: 3px solid #ff6b9d;
animation: loading-pulse 2s ease-in-out infinite;
position: relative;
}

.loading-logo::before {
content: '';
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
border-radius: 50%;
background: linear-gradient(45deg, #ff6b9d, #c44569, #ff6b9d);
z-index: -1;
opacity: 0.5;
animation: loading-logo-glow 2s ease-in-out infinite alternate;
}

@keyframes loading-logo-glow {
from { transform: scale(1); opacity: 0.5; }
to { transform: scale(1.1); opacity: 0.8; }
}

.loading-logo img {
width: 100%;
height: 100%;
object-fit: cover;
animation: loading-logo-rotate 3s linear infinite;
}

@keyframes loading-logo-rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

@keyframes loading-pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}

.loading-text {
font-size: 1.2rem;
margin-bottom: 20px;
color: #ff6b9d;
font-weight: 600;
animation: loading-text-glow 2s ease-in-out infinite alternate;
}

@keyframes loading-text-glow {
from { text-shadow: 0 0 10px rgba(255, 107, 157, 0.5); }
to { text-shadow: 0 0 20px rgba(255, 107, 157, 0.8); }
}

.loading-bar {
width: 200px;
height: 6px;
background: rgba(255, 255, 255, 0.2);
border-radius: 3px;
overflow: hidden;
margin: 0 auto;
position: relative;
}

.loading-bar::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
animation: loading-bar-shine 2s ease-in-out infinite;
}

@keyframes loading-bar-shine {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}

.loading-progress {
height: 100%;
background: linear-gradient(90deg, #ff6b9d, #c44569, #ff6b9d);
border-radius: 3px;
animation: loading-progress 3s ease-in-out infinite;
position: relative;
}

@keyframes loading-progress {
0% { width: 0%; }
25% { width: 30%; }
50% { width: 70%; }
75% { width: 90%; }
100% { width: 100%; }
}

/* Responsividade */
@media (max-width: 768px) {
.header {
flex-direction: column;
text-align: center;
}

.nav {
flex-direction: column;
gap: 20px;
}

.nav-links ul {
justify-content: center;
}

.profile-image {
width: 150px;
height: 150px;
}

.title-text {
font-size: 2rem;
}

.title-subtitle {
font-size: 1rem;
}

.profile-card {
padding: 30px 20px;
}

.social-container {
flex-direction: column;
align-items: center;
}

.social-btn {
width: 100%;
max-width: 250px;
}

.header-buttons {
justify-content: center;
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}

.profile-image {
width: 120px;
height: 120px;
}

.title-text {
font-size: 1.5rem;
}

.profile-card {
padding: 20px 15px;
}

.nav-link {
padding: 8px 12px;
font-size: 0.9rem;
}

.policy-btn {
padding: 10px 15px;
font-size: 0.8rem;
}
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, #ff6b9d, #c44569);
border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
background: linear-gradient(135deg, #c44569, #ff6b9d);
}

/* Animações de entrada */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.profile-card {
animation: fadeInUp 1s ease-out;
}

.social-container {
animation: fadeInUp 1s ease-out 0.3s both;
}

/* Efeitos de hover adicionais */
.profile-link:hover .profile-image {
transform: scale(1.05);
box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.nav-link:hover i {
transform: scale(1.2);
}

/* Efeito de partículas */
.particle {
position: absolute;
width: 2px;
height: 2px;
background: #ff6b9d;
border-radius: 50%;
animation: particle-float 4s ease-in-out infinite;
}

@keyframes particle-float {
0%, 100% {
opacity: 0;
transform: translateY(0) scale(0);
}
50% {
opacity: 1;
transform: translateY(-20px) scale(1);
}
}

/* Novos efeitos: Bounce nos botões */
@keyframes bounce {
0%, 20%, 53%, 80%, 100% {
transform: translate3d(0,0,0);
}
40%, 43% {
transform: translate3d(0, -8px, 0);
}
70% {
transform: translate3d(0, -4px, 0);
}
90% {
transform: translate3d(0, -2px, 0);
}
}

.social-btn:hover {
animation: bounce 0.6s ease;
}

/* Efeito de onda nos botões */
.ripple {
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.3);
transform: scale(0);
animation: ripple 0.6s linear;
pointer-events: none;
}

@keyframes ripple {
to {
transform: scale(4);
opacity: 0;
}
}

/* Novos efeitos especiais adicionais */

/* Efeito de neve flutuante */
.snowflake {
position: fixed;
top: -10px;
z-index: 1;
user-select: none;
cursor: default;
animation-name: snowflakes-fall, snowflakes-shake;
animation-duration: 10s, 3s;
animation-timing-function: linear, ease-in-out;
animation-iteration-count: infinite, infinite;
animation-play-state: running, running;
}

@keyframes snowflakes-fall {
0% {
top: -10px;
}
100% {
top: 100vh;
}
}

@keyframes snowflakes-shake {
0%, 100% {
transform: translateX(0px);
}
50% {
transform: translateX(80px);
}
}

/* Efeito de brilho nos textos */
.glow-text {
text-shadow: 0 0 10px currentColor;
animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
from { text-shadow: 0 0 10px currentColor; }
to { text-shadow: 0 0 20px currentColor, 0 0 30px currentColor; }
}

/* Efeito de flutuação suave */
.float {
animation: float 6s ease-in-out infinite;
}

@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
}

/* Efeito de rotação 3D */
.rotate-3d {
animation: rotate-3d 10s linear infinite;
}

@keyframes rotate-3d {
0% { transform: rotateY(0deg); }
100% { transform: rotateY(360deg); }
}

/* Efeito de pulso de coração */
.heartbeat {
animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.1); }
}

/* Efeito de arco-íris */
.rainbow {
background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
background-size: 400% 400%;
animation: rainbow 3s ease infinite;
}

@keyframes rainbow {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}

/* Efeito de vibração */
.vibrate {
animation: vibrate 0.3s linear infinite;
}

@keyframes vibrate {
0%, 100% { transform: translate(0); }
10%, 30%, 50%, 70%, 90% { transform: translate(-2px, -2px); }
20%, 40%, 60%, 80% { transform: translate(2px, 2px); }
}

/* Efeito de zoom suave */
.zoom-in {
animation: zoom-in 2s ease-in-out infinite alternate;
}

@keyframes zoom-in {
from { transform: scale(1); }
to { transform: scale(1.05); }
}

/* Efeito de rotação infinita */
.spin {
animation: spin 2s linear infinite;
}

@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

/* Efeito de fade in com slide */
.fade-in-slide {
animation: fade-in-slide 1s ease-out;
}

@keyframes fade-in-slide {
from {
opacity: 0;
transform: translateX(-50px);
}
to {
opacity: 1;
transform: translateX(0);
}
}

/* Efeito de brilho de borda */
.border-glow {
position: relative;
}

.border-glow::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
background: linear-gradient(45deg, #ff6b9d, #c44569, #ff6b9d);
border-radius: inherit;
z-index: -1;
animation: border-glow-animation 2s ease-in-out infinite alternate;
}

@keyframes border-glow-animation {
from { opacity: 0.5; }
to { opacity: 1; }
}

/* Efeito de partículas de fundo */
.background-particles {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: -1;
}

.particle-bg {
position: absolute;
width: 4px;
height: 4px;
background: rgba(255, 107, 157, 0.6);
border-radius: 50%;
animation: particle-bg-float 8s ease-in-out infinite;
}

@keyframes particle-bg-float {
0%, 100% {
opacity: 0;
transform: translateY(0) scale(0);
}
50% {
opacity: 1;
transform: translateY(-100px) scale(1);
}
}

/* Efeito de cursor personalizado */
.custom-cursor {
width: 20px;
height: 20px;
background: radial-gradient(circle, #ff6b9d, transparent);
border-radius: 50%;
position: fixed;
pointer-events: none;
z-index: 9999;
transition: transform 0.1s ease;
}

/* Efeito de texto com gradiente animado */
.gradient-text {
background: linear-gradient(45deg, #ff6b9d, #c44569, #ff6b9d);
background-size: 200% 200%;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
} 