/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores elegante para hotelaria */
    --primary-color: #1a365d;
    --secondary-color: #d4af37;
    --accent-color: #2c5282;
    --background-gradient-1: #f7fafc;
    --background-gradient-2: #edf2f7;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Base */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--background-gradient-1) 0%, var(--background-gradient-2) 100%);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Animação de fundo sutil */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(26, 54, 93, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Container Principal */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    animation: fadeInUp 1s ease-out;
}

/* Container de Emojis */
.emoji-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.emoji-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
}

.emoji {
    font-size: clamp(5rem, 15vw, 10rem);
    display: inline-block;
    user-select: none;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: filter 0.3s ease;
    cursor: pointer;
}

.emoji:hover {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
    animation-play-state: paused;
}

.emoji-1 {
    animation: emojiFloatRotate 4s ease-in-out infinite;
    animation-delay: 0s;
}

.emoji-2 {
    animation: emojiFloatHammer 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.emoji-3 {
    animation: emojiFloatBounce 3.5s ease-in-out infinite;
    animation-delay: 1s;
}

.emoji-4 {
    animation: emojiFloatSpin 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Container da Mensagem */
.message-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 0 auto 2rem;
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.8s both;
}

.subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.6s both;
}

.description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    animation: fadeIn 1s ease-out 0.9s both;
}

/* Elementos Decorativos */
.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.dot {
    position: absolute;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.dot-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.dot-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.dot-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.footer p {
    opacity: 0.7;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-10px) translateX(-10px);
    }
    75% {
        transform: translateY(-30px) translateX(5px);
    }
}

/* Animações dos Emojis */
@keyframes emojiFloatRotate {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

@keyframes emojiFloatHammer {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(-20deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(20deg);
    }
}

@keyframes emojiFloatBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.15);
    }
}

@keyframes emojiFloatSpin {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .content-wrapper {
        gap: 2rem;
    }

    .emoji-container {
        min-height: 200px;
    }

    .emoji-wrapper {
        gap: 1.5rem;
    }

    .emoji {
        font-size: clamp(3.5rem, 12vw, 6rem);
    }

    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.125rem;
    }

    .description {
        font-size: 1rem;
    }

    .dot {
        display: none; /* Esconde dots em mobile para melhor performance */
    }

    .footer {
        margin-top: 2rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    .content-wrapper {
        gap: 1.5rem;
    }

    .emoji-container {
        min-height: 150px;
    }

    .emoji-wrapper {
        gap: 1rem;
    }

    .emoji {
        font-size: clamp(3rem, 10vw, 5rem);
    }

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

    .underline {
        width: 80px;
        margin-bottom: 1.5rem;
    }
}

/* Modo de alto contraste (acessibilidade) */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #333333;
        --text-light: #666666;
    }
}

/* Redução de movimento (acessibilidade) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
