/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

a {
    text-decoration: none;
}

a,
i {
  color: #fff;
}

:root {
    --color-primary: #9737c2;
    --color-primary-hover: #c026d3;
    --color-background: #000000;
    --color-text: #ffffff;
    
    --font-primary: 'Arial', sans-serif;
    --font-display: "Playfair Display", serif;
    
    --transition-default: all 0.3s ease;
}

body {
    font-family: var(--font-primary);
    background: var(--color-background);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* ===================================
   Conteúdo Principal
   =================================== */
.content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
}

h1 {
    font-size: 8.8rem;
    margin-bottom: 3rem;
    letter-spacing: 0.025em;
    line-height: 1.2;
}


.spectral-bold {
  font-family: "Spectral", serif;
  font-weight: 700;
  font-style: normal;
}



.dm-sans-regular  {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


.subtitle {
    color: var(--color-text);
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ===================================
   Botão CTA
   =================================== */
.cta-btn {
    background: var(--color-primary);
    color: var(--color-text);
    border: none;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition-default);
    letter-spacing: 1px;
}

.cta-btn:hover {
    background: #812ba4;
}

.cta-btn:active {
    transform: translateY(0);
}

.cta-btn:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}


.footer {
    position: absolute;
    bottom: 30px;
    color: var(--color-text);
    font-size: 14px;
    z-index: 10;
}

.footer a {
    color: var(--color-text);
    text-decoration: underline;
}

/* ===================================
   Elementos Decorativos Flutuantes
   =================================== */
.shape {
    position: absolute;
    animation: float 8s ease-in-out infinite;
    opacity: 0.8;
}

.shape.emoji {
    font-size: 40px;
    line-height: 1;
}

/* ===================================
   Animação Float
   =================================== */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(15px, -15px) rotate(90deg);
    }
    50% {
        transform: translate(-15px, 15px) rotate(180deg);
    }
    75% {
        transform: translate(15px, 15px) rotate(270deg);
    }
}

/* ===================================
   Posicionamento dos Elementos
   =================================== */
.shape:nth-child(1) {
    top: 8%;
    left: 8%;
    color: var(--color-emoji-yellow);
    animation-delay: 0s;
}

.shape:nth-child(2) {
    top: 5%;
    left: 35%;
    color: var(--color-emoji-gray);
    animation-delay: 1s;
}

.shape:nth-child(3) {
    top: 20%;
    left: 20%;
    color: var(--color-emoji-cyan);
    animation-delay: 2s;
}

.shape:nth-child(4) {
    top: 3%;
    right: 8%;
    color: var(--color-primary);
    animation-delay: 0.5s;
}

.shape:nth-child(5) {
    top: 20%;
    left: 45%;
    color: var(--color-emoji-blue);
    animation-delay: 1.5s;
}

.shape:nth-child(6) {
    top: 15%;
    right: 35%;
    color: var(--color-emoji-pink);
    animation-delay: 2.5s;
}

.shape:nth-child(7) {
    top: 50%;
    left: 8%;
    color: var(--color-emoji-cyan);
    animation-delay: 0.8s;
}

.shape:nth-child(8) {
    top: 45%;
    left: 20%;
    color: var(--color-emoji-orange);
    animation-delay: 1.8s;
}

.shape:nth-child(9) {
    top: 40%;
    right: 12%;
    color: var(--color-emoji-gray);
    animation-delay: 1.2s;
}

.shape:nth-child(10) {
    top: 55%;
    right: 25%;
    color: var(--color-emoji-yellow);
    animation-delay: 2.2s;
}

.shape:nth-child(11) {
    bottom: 18%;
    left: 5%;
    color: var(--color-emoji-orange);
    animation-delay: 0.3s;
}

.shape:nth-child(12) {
    bottom: 25%;
    left: 25%;
    color: var(--color-emoji-pink);
    animation-delay: 1.3s;
}

.shape:nth-child(13) {
    bottom: 15%;
    left: 40%;
    color: var(--color-emoji-yellow);
    animation-delay: 2.3s;
}

.shape:nth-child(14) {
    bottom: 25%;
    left: 60%;
    color: var(--color-primary);
    animation-delay: 0.7s;
}

.shape:nth-child(15) {
    bottom: 20%;
    right: 15%;
    color: var(--color-emoji-cyan);
    animation-delay: 1.7s;
}

.shape:nth-child(16) {
    bottom: 35%;
    right: 8%;
    color: var(--color-emoji-blue);
    animation-delay: 2.7s;
}

/* ===================================
   Media Queries - Responsividade
   =================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 50px;
    }

    .subtitle {
        font-size: 16px;
    }

    .content {
        padding: 20px;
    }
    
    .shape.emoji {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 15px 35px;
        font-size: 14px;
    }
    
    .shape.emoji {
        font-size: 24px;
    }
}



.social-section {
    padding: 40px 20px;
    margin: 60px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-section h2 {
    font-size: 1.8rem;
    margin: 0;
    color: #ffffff;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons a {
    color: #ffffff;
    font-size: 2.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #667eea;
    transform: scale(1.2);
}

.social-icons i {
    display: block;
}

/* Responsividade */
@media (max-width: 768px) {
    .social-section {
        gap: 20px;
    }
    
    .social-icons {
        gap: 30px;
    }
    
    .social-icons a {
        font-size: 2rem;
    }
    
    .social-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 50px;
        word-break: break-word;
        hyphens: auto;
    }

    .subtitle {
        font-size: 16px;
    }

    .content {
        padding: 20px;
    }
    
    .shape.emoji {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
        word-break: break-word;
        hyphens: auto;
    }

    .subtitle {
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 15px 35px;
        font-size: 14px;
    }
    
    .shape.emoji {
        font-size: 24px;
    }
}

h1 {
    font-size: 8.8rem;
    margin-bottom: 3rem;
    letter-spacing: 0.025em;
    line-height: 1.2;
    max-width: 100%;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    h1 {
        font-size: 50px;
        max-width: 90vw;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .subtitle {
        font-size: 16px;
    }

    .content {
        padding: 20px;
    }
    
    .shape.emoji {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 36px;
        max-width: 85vw;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .subtitle {
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 15px 35px;
        font-size: 14px;
    }
    
    .shape.emoji {
        font-size: 24px;
    }
}