/* RESET E BASE - NABIRRA ACÁRIO CONFEITARIA */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(145deg, #FDF8F0 0%, #FDF3E8 100%);
    color: #2E241F;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

/* fundo com textura elegante */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(232, 185, 134, 0.08) 0%, transparent 70%);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e6d5c3" opacity="0.1"><path d="M12,2C6.48,2,2,6.48,2,12s4.48,10,10,10s10-4.48,10-10S17.52,2,12,2z M12,20c-4.41,0-8-3.59-8-8s3.59-8,8-8 s8,3.59,8,8S16.41,20,12,20z M12,6c-3.31,0-6,2.69-6,6s2.69,6,6,6s6-2.69,6-6S15.31,6,12,6z"/></svg>');
    background-repeat: repeat;
    background-size: 28px;
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

/* ========== CONTROLES IDIOMA ========== */
.controls {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1000;
    background: rgba(46, 36, 31, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 60px;
    padding: 6px 10px;
    border: 1px solid rgba(232, 185, 134, 0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.language-selector {
    display: flex;
    gap: 8px;
}

.lang-btn {
    width: 36px;
    height: 28px;
    border-radius: 30px;
    border: none;
    background: rgba(255, 248, 240, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lang-btn.active {
    background: #FFFFFF;
    box-shadow: 0 0 0 2px #D98946, 0 2px 8px rgba(0,0,0,0.1);
    transform: scale(1.02);
}

/* container principal */
.container {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 16px 40px;
    text-align: center;
}

/* conteúdo por idioma */
.language-content {
    display: none;
}

.language-content.active {
    display: block;
    animation: fadeSlideUp 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* logo */
.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 4px solid #FFF6ED;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12), 0 0 0 1px rgba(232, 185, 134, 0.4);
    transition: transform 0.25s ease;
    background: #F8E6D4;
}

.profile-pic:hover {
    transform: scale(1.02);
}

/* título */
.title-container {
    margin-bottom: 18px;
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #8B4513 0%, #D98946 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 6px;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 28px;
    background-color: #D98946;
    margin-left: 3px;
    vertical-align: middle;
    animation: blink 1s step-end infinite;
    border-radius: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* descrição */
.description-compact {
    margin: 10px auto 20px;
}

.main-description {
    font-size: 1rem;
    font-weight: 500;
    color: #6C4A34;
    background: rgba(255, 245, 235, 0.8);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 40px;
    backdrop-filter: blur(2px);
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

/* badges de destaque */
.badge-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.badge {
    background: linear-gradient(135deg, #FFF5E6, #FFEDDD);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #E8C9A8;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* bolhas */
.bubbles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.bubble {
    background: #FFFFFFCC;
    backdrop-filter: blur(2px);
    color: #8B4513;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #F0DBC4;
    transition: all 0.2s;
    animation: softPulse 3s infinite ease-in-out;
    animation-delay: calc(var(--i) * 0.12s);
    letter-spacing: 0.2px;
}

@keyframes softPulse {
    0%, 100% { transform: scale(1); background: #FFFFFFCC; }
    50% { transform: scale(1.03); background: #FFF2E6; border-color: #E8B986; }
}

.bubble:hover {
    transform: scale(1.08);
    background: #FFF7EF;
    animation-play-state: paused;
}

/* botões */
.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin: 28px auto 22px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    height: 60px;
    width: 100%;
    box-shadow: 0 6px 14px rgba(90, 45, 20, 0.08);
    border: 1px solid #F0DBC4;
    padding: 0 18px;
    color: #5C3A24;
}

.link-button i {
    font-size: 1.2rem;
    margin-right: 10px;
    color: #D98946;
}

.link-button.whatsapp i {
    color: #25D366;
}

.link-button.facebook i {
    color: #1877F2;
}

.link-button.shop i {
    color: #FF6B4A;
}

.link-button.podcast i {
    color: #9B59B6;
}

.link-button.review i {
    color: #F1C40F;
}

.link-button.maps i {
    color: #34A853;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(80, 40, 20, 0.12);
    background: #FFFBF7;
    border-color: #D98946;
}

.button-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* FOOTER POWERED BY HANGAR - MAIS SUTIL */
.footer-powered {
    margin-top: 25px;
    padding-top: 12px;
    border-top: 1px solid rgba(232, 185, 134, 0.2);
    text-align: center;
}

.powered-link {
    text-decoration: none;
    display: inline-block;
    padding: 4px 8px;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.powered-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.powered-link span {
    font-size: 0.55rem;
    font-weight: 400;
    color: #C99E78;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: block;
}

.powered-link strong {
    font-size: 0.65rem;
    font-weight: 600;
    color: #8B4513;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.powered-link:hover strong {
    color: #D98946;
}

/* responsividade */
@media (max-width: 480px) {
    .controls {
        top: 12px;
        right: 12px;
        padding: 4px 8px;
    }
    .lang-btn {
        width: 32px;
        height: 26px;
    }
    .container {
        padding: 16px 12px 30px;
    }
    .profile-pic {
        width: 120px;
        height: 120px;
    }
    h1 {
        font-size: 1.5rem;
    }
    .link-button {
        height: 54px;
        font-size: 0.85rem;
    }
    .button-text {
        font-size: 0.85rem;
    }
    .bubble {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    .badge {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    .main-description {
        font-size: 0.9rem;
    }
    .footer-powered {
        margin-top: 18px;
        padding-top: 8px;
    }
    .powered-link span {
        font-size: 0.5rem;
    }
    .powered-link strong {
        font-size: 0.6rem;
    }
}

@media (max-width: 380px) {
    .link-button {
        height: 50px;
    }
    .button-text {
        font-size: 0.75rem;
    }
    .bubble {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
    h1 {
        font-size: 1.3rem;
    }
}
