:root {
    --bg-primary: #fffafb;
    --text-primary: #4a2838;
    --text-secondary: #8c6273;
    
    --action-bg: #2d2633; /* Cor mais escura para os blocos/botões */
    --action-text: #ffffff;
    --action-text-secondary: #d1b8c4;

    --accent-primary: #ff8fb3; /* Rosa bebê forte para botões e detalhes */
    --accent-secondary: #80cfff; /* Azul bebê forte */

    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --font-inter: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-inter);
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}

/* Background Effects - Rosa bebe e azul bebe */
.glass-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff94b8 0%, #8acfff 100%);
    z-index: -2;
}

.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.85;
    pointer-events: none;
}

.glow-1 {
    top: -5%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: #ff6b9a;
    animation: float 10s ease-in-out infinite alternate;
}

.glow-2 {
    bottom: -5%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: #4db8ff;
    animation: float 12s ease-in-out infinite alternate-reverse;
}

/* Layout */
.app-wrap {
    width: 100%;
    max-width: 480px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* Header */
.brand-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.avatar-container {
    position: relative;
    width: 96px;
    height: 96px;
    margin-bottom: 0.5rem;
}

.brand-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 15px rgba(255, 143, 179, 0.4);
    position: relative;
    z-index: 2;
    background-color: var(--accent-primary);
}

.avatar-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ffffff;
    z-index: 1;
    animation: pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
}

.brand-tagline {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 700;
    max-width: 90%;
    margin: 0 auto;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.6);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-full);
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-headline {
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    color: var(--text-primary);
}

@media (min-width: 400px) {
    .main-headline {
        font-size: 1.9rem;
    }
}

.highlight {
    background: linear-gradient(135deg, #ff6b9a 0%, #20a0e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.sub-headline {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 500;
    max-width: 95%;
    margin: 0 auto;
}

/* Action Block - Mais escuro */
.action-block {
    background: var(--action-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 15px 35px rgba(45, 38, 51, 0.3);
    color: var(--action-text);
}

.choice-text {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--action-text-secondary);
    margin-bottom: 0.25rem;
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.125rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-icon {
    font-size: 1.25rem;
}

.btn-text {
    z-index: 2;
}

.btn-primary {
    background: linear-gradient(135deg, #ff8fb3 0%, #ff5c8a 100%);
    color: white;
    border: none;
    box-shadow: 0 6px 20px rgba(255, 92, 138, 0.4);
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-glow {
    animation: btnGlow 3s infinite alternate;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
    z-index: 1;
}

.btn-secondary {
    background: linear-gradient(135deg, #80cfff 0%, #4db8ff 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(77, 184, 255, 0.3);
}

.btn-secondary:active {
    transform: scale(0.97);
}

.conversion-text {
    font-size: 0.85rem;
    text-align: center;
    color: var(--action-text-secondary);
    font-weight: 500;
    margin-top: 0.5rem;
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    color: var(--action-text-secondary);
    margin-top: 0.5rem;
}

.avatars {
    display: flex;
}

.mini-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--action-bg);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.mini-avatar:first-child { margin-left: 0; background: #ffc2d4; z-index: 4; }
.mini-avatar:nth-child(2) { background: #ffb3c6; z-index: 3; }
.mini-avatar:nth-child(3) { background: #80cfff; z-index: 2; }
.mini-avatar:last-child { background: #4db8ff; z-index: 1; }

.highlight-text {
    color: var(--action-text);
    font-weight: 700;
}

/* Scarcity Block */
.scarcity-block {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.125rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.scarcity-progress-container {
    width: 100%;
    height: 6px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.scarcity-progress-bar {
    height: 100%;
    background: var(--warning);
    width: 25%;
    border-radius: var(--radius-full);
    transition: width 1s ease-in-out;
}

.scarcity-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scarcity-text {
    font-size: 0.875rem;
    color: var(--warning);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--warning);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.spots-counter {
    font-size: 0.75rem;
    color: #ffd07d;
}

/* Footer */
.app-footer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.8;
    margin-top: 1rem;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--action-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 0.6rem 1.2rem 0.6rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 100;
    transition: bottom 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    width: max-content;
    max-width: 90vw;
}

.toast-notification.show {
    bottom: 2rem;
}

.toast-icon-wrap {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
    flex-shrink: 0;
}

.toast-icon {
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

.toast-content {
    display: flex;
    flex-direction: column;
}

.toast-msg {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--action-text);
}

.toast-time {
    font-size: 0.7rem;
    color: var(--action-text-secondary);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-40px) scale(1.1); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes btnGlow {
    0% { box-shadow: 0 6px 20px rgba(255, 92, 138, 0.3); }
    100% { box-shadow: 0 6px 30px rgba(255, 92, 138, 0.6); }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
