:root {
    /* Paleta Oficial */
    --azul-bebe: #7EC8E3;
    --azul-medio: #4FA3C7;
    --rosa-bebe: #F7A8B8;
    --rosa-medio: #E97A8D;
    --off-white: #F8F6F4;
    --bege-claro: #EADFD9;
    --caramelo-claro: #D89B5B;
    --marrom-dourado: #B8743A;
    --creme: #F3E5D0;

    /* Variáveis de Uso */
    --primary-color: var(--azul-medio);
    --secondary-color: var(--rosa-medio);
    --text-color: var(--marrom-dourado);
    --bg-gradient-start: var(--azul-bebe);
    --bg-gradient-end: var(--rosa-bebe);
    --glass-bg: rgba(248, 246, 244, 0.96);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-shadow: rgba(79, 163, 199, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Clouds */
.clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: var(--off-white);
    border-radius: 50px;
    opacity: 0.8;
    animation: float linear infinite;
    filter: blur(1px);
    box-shadow: inset -5px -5px 15px rgba(234, 223, 217, 0.5);
}

.cloud::before, .cloud::after {
    content: '';
    position: absolute;
    background: var(--off-white);
    border-radius: 50%;
    box-shadow: inset -3px -3px 10px rgba(234, 223, 217, 0.3);
}

.cloud1 { width: 150px; height: 50px; top: 15%; left: -20%; animation-duration: 30s; }
.cloud1::before { width: 70px; height: 70px; top: -35px; left: 20px; }
.cloud1::after { width: 50px; height: 50px; top: -20px; right: 25px; }

.cloud2 { width: 100px; height: 35px; top: 40%; left: -10%; animation-duration: 40s; animation-delay: -10s; opacity: 0.6; transform: scale(0.8); }
.cloud2::before { width: 50px; height: 50px; top: -25px; left: 15px; }
.cloud2::after { width: 35px; height: 35px; top: -15px; right: 15px; }

.cloud3 { width: 200px; height: 60px; top: 65%; left: -30%; animation-duration: 45s; animation-delay: -5s; }
.cloud3::before { width: 90px; height: 90px; top: -45px; left: 30px; }
.cloud3::after { width: 70px; height: 70px; top: -30px; right: 30px; }

.cloud4 { width: 120px; height: 40px; top: 80%; left: -15%; animation-duration: 35s; animation-delay: -15s; opacity: 0.7; }
.cloud4::before { width: 60px; height: 60px; top: -30px; left: 20px; }
.cloud4::after { width: 45px; height: 45px; top: -20px; right: 20px; }

@keyframes float {
    0% { transform: translateX(0); }
    100% { transform: translateX(120vw); }
}

/* Container & Card */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow: 0 10px 40px var(--glass-shadow);
    text-align: center;
    transform: translateY(0);
    animation: bounce-in 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes bounce-in {
    0% { transform: scale(0.8) translateY(50px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.logo {
    max-width: 240px;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

h1 {
    font-family: 'Pacifico', cursive;
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.9);
}

.header p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: var(--marrom-dourado);
    font-weight: 500;
}

/* Contact Buttons - Pill Design (Formato de Botões Reais) */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-style: normal;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    color: var(--azul-medio);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 25px;
    border-radius: 50px; /* Borda redonda estilo botão pílula */
    background-color: white; /* Fundo branco sólido */
    border: 2px solid var(--azul-bebe); /* Borda Azul por padrão */
    box-shadow: 0 4px 10px rgba(126, 200, 227, 0.15);
}

.contact-item span {
    line-height: 1.4;
}

.contact-item:hover {
    border-color: var(--rosa-medio); /* Borda Rosa Vibrante no Hover */
    box-shadow: 0 6px 18px rgba(233, 122, 141, 0.3);
    transform: translateY(-3px);
    color: var(--rosa-medio); /* Texto Rosa Vibrante */
}

/* Container do ícone */
.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item svg {
    color: var(--azul-medio);
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
}

.contact-item:hover svg {
    color: var(--rosa-medio); /* Ícone Rosa Vibrante */
    transform: scale(1.1);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    opacity: 1 !important;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20BA56;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Laptops & Short Screens (ex: 1366x768) */
@media (max-height: 850px) and (min-width: 601px) {
    .card {
        padding: 30px 50px;
    }
    
    .logo {
        max-width: 190px;
        margin-bottom: 10px;
    }

    h1 {
        font-size: 2.3rem;
        margin-bottom: 5px;
    }
    
    .header p {
        margin-bottom: 20px;
        font-size: 1.05rem;
    }

    .contact-info {
        gap: 12px;
    }

    .contact-item {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .contact-item svg {
        width: 22px;
        height: 22px;
    }
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    
    .card {
        padding: 25px 15px;
        border-radius: 18px;
    }
    
    .logo {
        max-width: 140px;
        margin-bottom: 5px;
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .header p {
        font-size: 0.95rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .contact-info {
        gap: 10px;
    }

    .contact-item {
        font-size: 0.9rem;
        gap: 12px;
        padding: 8px 15px;
    }

    .contact-item svg {
        width: 20px;
        height: 20px;
    }

    /* Adjust WhatsApp Float for mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
