/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Padrão de fundo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(115, 71, 136, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(111, 28, 167, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(57, 1, 94, 0.2) 0%, transparent 50%);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    z-index: -1;
    opacity: 0.5;
}

/* Header */
.header {
    background: linear-gradient(135deg, #b123f3 0%, #49075a 100%);
    padding: 16px 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(230, 41, 255, 0.3);
    
}

.header::before {
    content: '';
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.header-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.header-title {
    font-size: clamp(18px, 4vw, 28px);
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    
}

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

/* Conteúdo principal */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: calc(100vh - 140px);
}

.container {
    max-width: 46%;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

/* Seção do perfil */
.profile-section {
    margin-bottom: 40px;
}

.profile-image {
    width: 40%;
    height: 30%;
    padding: 5%;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

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

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Título principal */
.title-section {
    margin-bottom: 30px;
}

.main-title {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 0;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)); }
}

/* Subtítulo */
.subtitle-section {
    margin-bottom: 30px;
}

.subtitle {
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 400;
    line-height: 1.4;
    color: #d1d5db;
    margin-bottom: 0;
}

/* Call to Action */
.cta-section {
    margin-bottom: 40px;
}

.cta-text {
    font-size: clamp(20px, 4vw, 26px);
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 0;
    
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Botões */
/* Seção centralizada */
.buttons-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin: 30px 0;
}

/* Estilo base dos botões */
.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
  
  /* animação de pulsar */
  animation: pulse 0.5s infinite;
}

/* WhatsApp */
.btn-whatsapp {
  background-color: #25D366;
  width: 100%;
  height: 200%;
}

.btn-whatsapp:hover {
  background-color: #1ebe4b;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Telegram */
.btn-telegram {
  background-color: #0088cc;
  width: 100%;
}



.btn-telegram:hover {
  background-color: #0077b5;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Ícone do WhatsApp */
.btn-whatsapp i {
  margin-right: 10px;
  font-size: 22px;
}

/* Animação pulse */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); } /* aumenta 5% */
  100% { transform: scale(1); }
}



/* Redes sociais */
.social-section {
    margin-bottom: 40px;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f56040 0%, #e1306c 50%, #c13584 100%);
    color: #ffffff;
}

.social-icon.instagram:hover {
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

/* Rodapé */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-text {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .main-content {
        padding: 30px 15px;
        min-height: calc(100vh - 120px);
    }
    
    .container {
        max-width: 100%;
    }
    
    .profile-image {
        width: 70%;
        height: 80%;
        padding: 7%;
      
    }
    
    .buttons-section {
        gap: 15px;
    }
    
    .btn {
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 0;
    }
    
    .main-content {
        padding: 20px 10px;
    }
    
    .profile-image {
        width: 70%;
        height: 80%;
        padding: 7%;
    }
    
    .btn {
        padding: 14px 25px;
    }
}

/* Animações de entrada */
.profile-section {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-section {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.subtitle-section {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-section {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.buttons-section {
    animation: fadeInUp 1s ease-out 1s both;
}

.social-section {
    animation: fadeInUp 1s ease-out 1.2s both;
}

/* Efeitos de hover personalizados */
.btn {
    position: relative;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary::after {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.btn-secondary::after {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.btn:hover::after {
    opacity: 1;
}

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

/* Preloader (opcional) */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #dc2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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





