/* ====================================
   CHÁ DE BEBÊ DA SOFIA - STYLES
   Tema: Jardim Encantado de Borboletas
   Paleta: Rosa, Ouro Rosa, Creme
   ==================================== */

/* Reset e Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores Rosa */
    --rosa-bebe: #fce4ec;
    --rosa-pastel: #f8bbd9;
    --rosa-cha: #f48fb1;
    --rosa-medio: #ec407a;
    --rosa-escuro: #c2185b;
    --magenta-suave: #e91e8c;
    
    /* Tons de Ouro Rosa e Creme */
    --ouro-rosa: #d4a574;
    --ouro-rosa-claro: #e8c8a8;
    --ouro-brilho: #ffd700;
    --creme: #fff8f0;
    --creme-escuro: #f5e6d3;
    
    /* Cores de Suporte */
    --verde-claro: #c8e6c9;
    --verde-folha: #a5d6a7;
    --pessego: #ffccbc;
    --branco: #ffffff;
    --branco-translucido: rgba(255, 255, 255, 0.9);
    
    /* Sombras e Efeitos */
    --sombra-suave: 0 4px 20px rgba(194, 24, 91, 0.15);
    --sombra-card: 0 8px 32px rgba(194, 24, 91, 0.2);
    --sombra-intensa: 0 12px 48px rgba(194, 24, 91, 0.3);
    --brilho-dourado: 0 0 20px rgba(212, 165, 116, 0.5);
    
    /* Fontes */
    --fonte-cursiva: 'Great Vibes', cursive;
    --fonte-elegante: 'Playfair Display', serif;
    --fonte-moderna: 'Poppins', sans-serif;
    
    /* Transições */
    --transicao-suave: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transicao-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonte-moderna);
    font-weight: 400;
    font-size: 16px;
    background: linear-gradient(
        135deg,
        var(--rosa-bebe) 0%,
        var(--creme) 25%,
        var(--rosa-pastel) 50%,
        var(--creme) 75%,
        var(--rosa-bebe) 100%
    );
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--rosa-escuro);
    position: relative;
    line-height: 1.6;
}

/* ====================================
   FUNDO MÁGICO
   ==================================== */
.magical-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(248, 187, 217, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(255, 204, 188, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 80%, rgba(244, 143, 177, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 90%, rgba(212, 165, 116, 0.2) 0%, transparent 40%);
    animation: gradientShift 15s ease-in-out infinite;
}

.sparkles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, var(--ouro-brilho) 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.fairy-dust {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dust-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--ouro-rosa-claro);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--ouro-rosa);
    animation: floatDust 8s ease-in-out infinite;
}

/* ====================================
   BORBOLETAS FLUTUANTES
   ==================================== */
.butterflies-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.floating-butterfly {
    position: absolute;
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(194, 24, 91, 0.3));
    animation: flyButterfly 20s ease-in-out infinite;
    opacity: 0.8;
}

.floating-butterfly::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: butterflyGlow 2s ease-in-out infinite;
}

.butterfly-trail {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--ouro-rosa-claro);
    border-radius: 50%;
    animation: trail 1s ease-out forwards;
    pointer-events: none;
}

/* ====================================
   FLORES DECORATIVAS
   ==================================== */
.flowers-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.flower {
    position: absolute;
    font-size: 32px;
    filter: drop-shadow(0 4px 8px rgba(194, 24, 91, 0.2));
    animation: swayFlower 4s ease-in-out infinite;
    opacity: 0.7;
}

.flower-1 { top: 10%; left: 5%; animation-delay: 0s; }
.flower-2 { top: 20%; right: 8%; animation-delay: 0.5s; }
.flower-3 { top: 45%; left: 3%; animation-delay: 1s; }
.flower-4 { top: 60%; right: 5%; animation-delay: 1.5s; }
.flower-5 { top: 75%; left: 7%; animation-delay: 2s; }
.flower-6 { top: 85%; right: 10%; animation-delay: 2.5s; }
.flower-7 { bottom: 5%; left: 15%; animation-delay: 3s; }
.flower-8 { bottom: 10%; right: 15%; animation-delay: 3.5s; }

/* Folhagens laterais */
.foliage-left, .foliage-right {
    position: fixed;
    width: 150px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.foliage-left {
    left: 0;
    background: linear-gradient(90deg, var(--verde-claro) 0%, transparent 100%);
}

.foliage-right {
    right: 0;
    background: linear-gradient(-90deg, var(--verde-claro) 0%, transparent 100%);
}

/* ====================================
   CONTAINER PRINCIPAL
   ==================================== */
.invitation-container {
    position: relative;
    z-index: 10;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

/* ====================================
   CABEÇALHO E BORBOLETA PRINCIPAL
   ==================================== */
.invitation-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    gap: 20px;
}

.header-ornament {
    font-size: 28px;
    color: var(--rosa-cha);
    animation: pulseOrnament 2s ease-in-out infinite;
    text-shadow: 0 0 10px var(--ouro-rosa);
}

.header-ornament.left { animation-delay: 0s; }
.header-ornament.right { animation-delay: 1s; }

/* Borboleta principal grande */
.butterfly-main {
    position: relative;
    width: 120px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.butterfly-emoji {
    font-size: 72px;
    animation: butterflyFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(194, 24, 91, 0.3));
    display: block;
}

@keyframes butterflyFloat {
    0%, 100% {
        transform: translateY(0) rotate(-5deg) scale(1);
    }
    25% {
        transform: translateY(-8px) rotate(3deg) scale(1.02);
    }
    50% {
        transform: translateY(-4px) rotate(-3deg) scale(1);
    }
    75% {
        transform: translateY(-10px) rotate(5deg) scale(1.02);
    }
}

.butterfly-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(244, 143, 177, 0.4) 0%, transparent 70%);
    animation: butterflyMainGlow 3s ease-in-out infinite;
    pointer-events: none;
}

/* ====================================
   SEÇÃO DE TÍTULO
   ==================================== */
.title-section {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.pre-title {
    font-family: var(--fonte-moderna);
    font-size: 15px;
    font-weight: 500;
    color: var(--rosa-escuro);
    letter-spacing: 1px;
    margin-bottom: 10px;
    animation: shimmerText 3s ease-in-out infinite;
}

.main-title {
    font-family: var(--fonte-cursiva);
    font-size: 48px;
    font-weight: 400;
    color: var(--rosa-escuro);
    text-shadow: 
        1px 1px 2px rgba(255, 255, 255, 0.8),
        2px 2px 4px rgba(194, 24, 91, 0.2);
    margin-bottom: 5px;
    line-height: 1.2;
}

.baby-name {
    font-family: var(--fonte-cursiva);
    font-size: 64px;
    font-weight: 400;
    color: var(--rosa-escuro);
    text-shadow: 
        1px 1px 2px rgba(255, 255, 255, 0.8),
        2px 2px 6px rgba(194, 24, 91, 0.3);
    animation: nameShine 4s ease-in-out infinite;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.deco-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ouro-rosa), transparent);
    border-radius: 2px;
}

.deco-butterfly {
    font-size: 24px;
    animation: floatIcon 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(194, 24, 91, 0.3));
}

/* ====================================
   SEÇÃO DE MENSAGEM
   ==================================== */
.message-section {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.message-card {
    position: relative;
    background: var(--branco-translucido);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: var(--sombra-card);
    border: 2px solid rgba(244, 143, 177, 0.3);
}

.card-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--ouro-rosa);
}

.card-corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.card-corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 8px 0 0;
}

.card-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 8px;
}

.card-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

.poetic-message {
    text-align: center;
    margin-bottom: 20px;
}

.message-line {
    display: block;
    font-family: var(--fonte-elegante);
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    color: var(--rosa-escuro);
    line-height: 1.8;
    animation: fadeInLine 0.8s ease-out both;
}

.message-line:nth-child(1) { animation-delay: 0.8s; }
.message-line:nth-child(2) { animation-delay: 1s; }
.message-line:nth-child(3) { animation-delay: 1.2s; }
.message-line:nth-child(4) { animation-delay: 1.4s; }

.message-line.highlight {
    font-size: 22px;
    font-weight: 500;
    color: var(--rosa-escuro);
}

.message-line strong {
    color: var(--ouro-rosa);
    font-weight: 600;
}

.invitation-text {
    text-align: center;
    font-family: var(--fonte-moderna);
    font-size: 15px;
    font-weight: 400;
    color: var(--rosa-escuro);
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 1.6s both;
}

.enchanted {
    font-family: var(--fonte-cursiva);
    font-size: 28px;
    color: var(--rosa-escuro);
    display: block;
    margin-top: 5px;
}

/* ====================================
   INFORMAÇÕES DO EVENTO
   ==================================== */
.event-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.info-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--branco) 0%, var(--rosa-bebe) 100%);
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: var(--sombra-suave);
    border: 1px solid rgba(244, 143, 177, 0.2);
    overflow: hidden;
    transition: var(--transicao-suave);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra-card);
}

.info-icon {
    font-size: 32px;
    animation: bounceIcon 2s ease-in-out infinite;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--rosa-cha);
    font-weight: 500;
}

.info-value {
    font-family: var(--fonte-moderna);
    font-size: 22px;
    font-weight: 600;
    color: var(--rosa-escuro);
}

.info-year {
    font-family: var(--fonte-elegante);
    font-size: 16px;
    color: var(--ouro-rosa);
    font-style: italic;
}

.card-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

/* ====================================
   BOTÕES DE AÇÃO
   ==================================== */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-family: var(--fonte-moderna);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transicao-bounce);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rosa-medio) 0%, var(--rosa-escuro) 50%, var(--magenta-suave) 100%);
    color: var(--branco);
    box-shadow: 
        0 8px 25px rgba(194, 24, 91, 0.4),
        0 0 0 0 rgba(194, 24, 91, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(194, 24, 91, 0.5),
        0 0 30px rgba(212, 165, 116, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--branco) 0%, var(--rosa-bebe) 100%);
    color: var(--rosa-escuro);
    border: 2px solid var(--rosa-pastel);
    box-shadow: var(--sombra-suave);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, var(--rosa-bebe) 0%, var(--rosa-pastel) 100%);
    box-shadow: var(--sombra-card);
}

.btn-icon {
    font-size: 24px;
    animation: floatIcon 2s ease-in-out infinite;
}

.btn-text {
    text-align: left;
    line-height: 1.3;
}

.btn-text small {
    font-size: 13px;
    opacity: 0.9;
}

.btn-sparkle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.6s ease-out;
}

.btn:active .btn-sparkle {
    transform: translate(-50%, -50%) scale(1);
}

/* ====================================
   RODAPÉ
   ==================================== */
.invitation-footer {
    text-align: center;
    padding: 30px 0;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.footer-flowers {
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer-flowers span {
    animation: floatIcon 3s ease-in-out infinite;
}

.footer-flowers span:nth-child(1) { animation-delay: 0s; }
.footer-flowers span:nth-child(2) { animation-delay: 0.3s; }
.footer-flowers span:nth-child(3) { animation-delay: 0.6s; }
.footer-flowers span:nth-child(4) { animation-delay: 0.9s; }
.footer-flowers span:nth-child(5) { animation-delay: 1.2s; }

.footer-text {
    font-family: var(--fonte-elegante);
    font-size: 16px;
    font-style: italic;
    color: var(--rosa-escuro);
    margin-bottom: 8px;
}

.footer-names {
    font-family: var(--fonte-cursiva);
    font-size: 26px;
    color: var(--rosa-escuro);
}

/* ====================================
   MODAL DE CONFIRMAÇÃO
   ==================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(194, 24, 91, 0.3);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transicao-suave);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(180deg, var(--branco) 0%, var(--rosa-bebe) 100%);
    border-radius: 30px;
    box-shadow: var(--sombra-intensa);
    border: 3px solid var(--rosa-pastel);
    transform: scale(0.8) translateY(50px);
    transition: var(--transicao-bounce);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-butterflies {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.modal-butterfly {
    position: absolute;
    font-size: 20px;
    animation: modalButterflyFloat 4s ease-in-out infinite;
    opacity: 0.6;
}

.mb-1 { top: 10%; left: 10%; animation-delay: 0s; }
.mb-2 { top: 5%; right: 15%; animation-delay: 1s; }
.mb-3 { bottom: 15%; right: 10%; animation-delay: 2s; }

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--rosa-pastel);
    color: var(--rosa-escuro);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transicao-suave);
}

.modal-close:hover {
    background: var(--rosa-medio);
    color: var(--branco);
    transform: rotate(90deg);
}

.modal-screen {
    padding: 40px 25px 30px;
}

.modal-screen.hidden {
    display: none;
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-title {
    font-family: var(--fonte-cursiva);
    font-size: 32px;
    color: var(--rosa-escuro);
    margin-bottom: 5px;
}

.modal-subtitle {
    font-family: var(--fonte-elegante);
    font-size: 18px;
    font-style: italic;
    color: var(--rosa-cha);
}

.modal-content {
    text-align: center;
}

.modal-intro {
    font-size: 14px;
    font-weight: 400;
    color: var(--rosa-escuro);
    line-height: 1.7;
    margin-bottom: 25px;
}

.modal-highlight {
    display: block;
    margin-top: 10px;
    color: var(--rosa-medio);
    font-style: italic;
}

/* Seleção de Fraldas */
.diaper-selection {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.diaper-option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    width: 110px;
    background: var(--branco);
    border: 3px solid var(--rosa-pastel);
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transicao-bounce);
}

.diaper-option:hover {
    transform: translateY(-5px);
    border-color: var(--rosa-medio);
    box-shadow: var(--sombra-card);
}

.diaper-option.selected {
    border-color: var(--rosa-escuro);
    background: linear-gradient(135deg, var(--rosa-bebe) 0%, var(--rosa-pastel) 100%);
    box-shadow: 0 0 20px rgba(194, 24, 91, 0.3);
}

.diaper-basket {
    position: relative;
    margin-bottom: 10px;
}

.basket-flowers {
    font-size: 12px;
    margin-bottom: 5px;
}

.diaper-icon {
    font-size: 36px;
}

.diaper-label {
    font-family: var(--fonte-moderna);
    font-size: 28px;
    font-weight: 700;
    color: var(--rosa-escuro);
}

.diaper-description {
    font-size: 12px;
    font-weight: 500;
    color: var(--rosa-escuro);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.diaper-check {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--rosa-escuro);
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    transform: scale(0);
    transition: var(--transicao-bounce);
}

.diaper-option.selected .diaper-check {
    opacity: 1;
    transform: scale(1);
}

/* Sugestões adicionais */
.additional-suggestions {
    background: var(--creme);
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
}

.suggestion-icon {
    font-size: 20px;
}

.suggestion-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--rosa-escuro);
}

.suggestion-text strong {
    color: var(--rosa-medio);
}

.suggestion-divider {
    color: var(--rosa-cha);
    font-size: 16px;
    margin: 5px 0;
}

.suggestion-item.highlight {
    background: linear-gradient(135deg, var(--rosa-bebe) 0%, var(--pessego) 100%);
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px;
}

/* Campo de nome */
.guest-name-section {
    margin-bottom: 20px;
}

.name-label {
    display: block;
    font-family: var(--fonte-elegante);
    font-size: 16px;
    color: var(--rosa-escuro);
    margin-bottom: 8px;
}

.name-input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--rosa-pastel);
    border-radius: 50px;
    font-family: var(--fonte-moderna);
    font-size: 16px;
    color: var(--rosa-escuro);
    background: var(--branco);
    transition: var(--transicao-suave);
    text-align: center;
}

.name-input:focus {
    outline: none;
    border-color: var(--rosa-medio);
    box-shadow: 0 0 15px rgba(244, 143, 177, 0.3);
}

.name-input::placeholder {
    color: var(--rosa-pastel);
}

.companion-note {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--rosa-medio);
    font-style: italic;
    text-align: center;
}

/* Botão de confirmação */
.btn-confirm {
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, var(--rosa-pastel) 0%, var(--rosa-cha) 100%);
    color: var(--rosa-escuro);
    border: none;
    border-radius: 50px;
    font-family: var(--fonte-moderna);
    font-size: 16px;
    font-weight: 500;
    cursor: not-allowed;
    transition: var(--transicao-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.6;
}

.btn-confirm:not(:disabled) {
    background: linear-gradient(135deg, var(--rosa-medio) 0%, var(--rosa-escuro) 100%);
    color: var(--branco);
    cursor: pointer;
    opacity: 1;
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.4);
}

.btn-confirm:not(:disabled):hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(194, 24, 91, 0.5);
}

/* ====================================
   TELA DE SUCESSO
   ==================================== */
#screenSuccess {
    text-align: center;
    padding: 50px 25px;
}

.success-animation {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.success-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    animation: successPulse 2s ease-in-out infinite;
}

.success-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(244, 143, 177, 0.4) 0%, transparent 70%);
    animation: glowPulse 2s ease-in-out infinite;
}

.success-butterflies {
    position: absolute;
    width: 100%;
    height: 100%;
}

.success-title {
    font-family: var(--fonte-cursiva);
    font-size: 38px;
    color: var(--rosa-escuro);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.success-message {
    font-size: 16px;
    font-weight: 400;
    color: var(--rosa-escuro);
    line-height: 1.7;
    margin-bottom: 15px;
}

.success-message strong {
    color: var(--rosa-medio);
}

.success-sub {
    font-family: var(--fonte-elegante);
    font-size: 15px;
    font-style: italic;
    color: var(--rosa-escuro);
    line-height: 1.7;
    margin-bottom: 25px;
}

.success-decoration {
    font-size: 24px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.success-decoration span {
    animation: floatIcon 2s ease-in-out infinite;
}

.btn-close-success {
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--rosa-medio) 0%, var(--rosa-escuro) 100%);
    color: var(--branco);
    border: none;
    border-radius: 50px;
    font-family: var(--fonte-moderna);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transicao-bounce);
}

.btn-close-success:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.4);
}

/* ====================================
   CELEBRAÇÃO
   ==================================== */
.celebration-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2000;
}

.celebration-overlay.hidden {
    display: none;
}

.celebration-butterflies {
    width: 100%;
    height: 100%;
}

.celebration-butterfly {
    position: absolute;
    font-size: 30px;
    animation: celebrateFly 3s ease-out forwards;
}

/* ====================================
   SEÇÃO DE LOCALIZAÇÃO - ELEGANTE
   ==================================== */
.location-section {
    margin: 25px 0;
}

.location-card {
    background: linear-gradient(145deg, var(--branco) 0%, var(--rosa-bebe) 100%);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--sombra-card);
    border: 1px solid rgba(244, 143, 177, 0.3);
}

.location-pin {
    font-size: 40px;
    margin-bottom: 8px;
}

.location-title {
    font-family: var(--fonte-cursiva);
    font-size: 28px;
    color: var(--rosa-escuro);
    margin-bottom: 18px;
}

.location-address {
    margin-bottom: 20px;
}

.address-main {
    font-family: var(--fonte-moderna);
    font-size: 16px;
    font-weight: 600;
    color: var(--rosa-escuro);
    margin-bottom: 6px;
}

.address-sub {
    font-family: var(--fonte-moderna);
    font-size: 14px;
    color: var(--rosa-medio);
    margin-bottom: 6px;
}

.address-ref {
    font-family: var(--fonte-moderna);
    font-size: 13px;
    color: var(--rosa-cha);
    font-style: italic;
    padding-top: 8px;
    border-top: 1px dashed var(--rosa-pastel);
    display: inline-block;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--rosa-cha), var(--rosa-medio));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--fonte-moderna);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transicao-suave);
    box-shadow: 0 4px 15px rgba(244, 143, 177, 0.4);
}

.btn-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 143, 177, 0.5);
    background: linear-gradient(135deg, var(--rosa-medio), var(--rosa-escuro));
}

/* ====================================
   DICAS (MIMO & COOLER) - ELEGANTE
   ==================================== */
.tips-section {
    display: flex;
    gap: 12px;
    margin: 20px 0;
}

.tip-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
    background: var(--rosa-bebe);
    border: 1px solid var(--rosa-pastel);
}

.tip-card.mimo-tip {
    background: linear-gradient(135deg, #fff0f5, #ffe4ec);
}

.tip-card.cooler-tip {
    background: linear-gradient(135deg, #e8f5fc, #d4edfc);
    border-color: #b3d9f2;
}

.tip-emoji {
    font-size: 24px;
    flex-shrink: 0;
}

.tip-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: var(--rosa-escuro);
}

.tip-card.cooler-tip p {
    color: #1565c0;
}

.tip-card strong {
    color: var(--rosa-medio);
}

.tip-card.cooler-tip strong {
    color: #0d47a1;
}

/* ====================================
   ESTOQUE DE FRALDAS - DISCRETO
   ==================================== */
.diaper-available {
    display: block;
    font-size: 10px;
    color: var(--rosa-cha);
    margin-top: 4px;
    opacity: 0.9;
}

.diaper-option.soldout {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(40%);
}

.diaper-option.soldout .diaper-available {
    display: none;
}

.diaper-soldout {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(120, 120, 120, 0.95);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 11px;
    z-index: 10;
}

.diaper-option.soldout .diaper-soldout {
    display: block;
}

.diaper-option.soldout .diaper-check {
    display: none;
}

/* ====================================
   RESPONSIVIDADE
   ==================================== */
@media (max-width: 480px) {
    .invitation-container {
        padding: 15px;
    }

    .main-title {
        font-size: 42px;
    }

    .baby-name {
        font-size: 54px;
    }

    .message-line {
        font-size: 18px;
    }

    .message-line.highlight {
        font-size: 20px;
    }

    .info-value {
        font-size: 22px;
    }

    .btn {
        padding: 16px 25px;
    }

    .diaper-selection {
        gap: 10px;
    }

    .diaper-option {
        width: 95px;
        padding: 12px;
    }

    .diaper-label {
        font-size: 24px;
    }

    .modal-title {
        font-size: 30px;
    }

    .flower {
        font-size: 24px;
    }
    
    .tips-section {
        flex-direction: column;
    }
    
    .location-card {
        padding: 25px 20px;
    }
    
    .location-title {
        font-size: 26px;
    }
}

@media (min-width: 768px) {
    .event-info {
        flex-direction: row;
        justify-content: center;
    }

    .info-card {
        flex: 1;
        max-width: 180px;
        flex-direction: column;
        text-align: center;
    }

    .action-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .btn {
        flex: 1;
        max-width: 220px;
    }
}
