/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #FFF8DC, #FFFACD);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    padding: 20px 0;
}

/* Container principal */
.container {
    max-width: 100%;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Imagem do convite */
.invite-image {
    position: relative;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 30px;
}

.main-invite {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.main-invite:hover {
    transform: scale(1.02);
}

/* Estrada de mel animada - versão melhorada */
.honey-road {
    position: relative;
    width: 120px;
    height: 250px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Stream de mel principal */
.honey-stream {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/* Blobs de mel orgânicos */
.honey-blob {
    position: relative;
    background: radial-gradient(ellipse at center, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    border-radius: 50%;
    opacity: 0;
    animation: blobFlow 3s ease-in-out infinite;
    box-shadow: 
        0 4px 15px rgba(255, 165, 0, 0.6),
        inset 0 2px 8px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 215, 0, 0.4);
    filter: blur(0.5px);
}

.honey-blob::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(1px);
}

.honey-blob::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    border-radius: 50%;
    animation: shimmer 2s ease-in-out infinite;
    z-index: -1;
}

/* Tamanhos e posições dos blobs */
.blob-1 {
    width: 80px;
    height: 25px;
    border-radius: 40px 40px 20px 20px;
    animation-delay: 0s;
}

.blob-2 {
    width: 60px;
    height: 30px;
    border-radius: 30px 30px 25px 25px;
    animation-delay: 0.3s;
    margin-left: 15px;
}

.blob-3 {
    width: 70px;
    height: 28px;
    border-radius: 35px 35px 22px 22px;
    animation-delay: 0.6s;
    margin-left: -10px;
}

.blob-4 {
    width: 65px;
    height: 32px;
    border-radius: 32px 32px 26px 26px;
    animation-delay: 0.9s;
    margin-left: 20px;
}

.blob-5 {
    width: 75px;
    height: 26px;
    border-radius: 37px 37px 21px 21px;
    animation-delay: 1.2s;
    margin-left: -5px;
}

.blob-6 {
    width: 55px;
    height: 35px;
    border-radius: 27px 27px 28px 28px;
    animation-delay: 1.5s;
    margin-left: 25px;
}

.blob-7 {
    width: 85px;
    height: 24px;
    border-radius: 42px 42px 19px 19px;
    animation-delay: 1.8s;
    margin-left: 10px;
}

/* Animações dos blobs */
@keyframes blobFlow {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.8) rotate(-5deg);
    }
    20% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
    80% {
        opacity: 1;
        transform: translateY(5px) scale(1.05) rotate(2deg);
    }
    100% {
        opacity: 0;
        transform: translateY(25px) scale(0.9) rotate(5deg);
    }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Partículas flutuantes */
.honey-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    font-size: 18px;
    animation: particleFloat 4s ease-in-out infinite;
    opacity: 0;
    filter: drop-shadow(2px 2px 4px rgba(255, 165, 0, 0.5));
}

.particle-1 {
    left: 10%;
    top: 15%;
    animation-delay: 0.5s;
}

.particle-2 {
    right: 15%;
    top: 25%;
    animation-delay: 1s;
}

.particle-3 {
    left: 20%;
    top: 45%;
    animation-delay: 1.5s;
}

.particle-4 {
    right: 10%;
    top: 55%;
    animation-delay: 2s;
}

.particle-5 {
    left: 15%;
    top: 75%;
    animation-delay: 2.5s;
}

.particle-6 {
    right: 20%;
    top: 85%;
    animation-delay: 3s;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.5) rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(90deg);
    }
    75% {
        opacity: 1;
        transform: translateY(-10px) scale(1.2) rotate(270deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px) scale(0.8) rotate(360deg);
    }
}

/* Brilho de fundo */
.honey-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 300px;
    background: radial-gradient(ellipse at center, 
        rgba(255, 215, 0, 0.3) 0%, 
        rgba(255, 165, 0, 0.2) 30%, 
        rgba(255, 140, 0, 0.1) 60%, 
        transparent 100%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Container do botão */
.button-container {
    margin-top: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Texto do endereço */
.address-text {
    color: #B8860B;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.address-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 165, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    border-color: rgba(255, 215, 0, 0.5);
}

/* Botão com cor de mel */
.maps-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF8C00);
    color: #8B4513;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 
        0 8px 20px rgba(255, 165, 0, 0.4),
        0 0 0 3px rgba(255, 215, 0, 0.2),
        inset 0 2px 8px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    border: 3px solid #FFD700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.maps-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.maps-button:hover::before {
    left: 100%;
}

.maps-button::after {
    content: '🍯';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 16px;
}

.maps-button:hover::after {
    opacity: 1;
    right: 10px;
}

.maps-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(255, 165, 0, 0.6),
        0 0 0 6px rgba(255, 215, 0, 0.3),
        inset 0 2px 8px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #FFA500, #FFD700, #FFA500);
}

.maps-button:active {
    transform: translateY(-2px) scale(1.02);
}

/* Abelhas animadas */
.bee {
    position: fixed;
    font-size: 30px;
    z-index: 1000;
    pointer-events: none;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.bee-1 {
    top: 20%;
    left: -50px;
    animation: flyAcross1 12s linear infinite;
}

.bee-2 {
    top: 70%;
    right: -50px;
    animation: flyAcross2 15s linear infinite;
}

.bee-3 {
    top: 45%;
    left: -50px;
    animation: flyAcross3 10s linear infinite;
}

/* Animações das abelhas */
@keyframes flyAcross1 {
    0% { left: -50px; transform: rotate(0deg); }
    25% { left: 25%; transform: rotate(10deg); }
    50% { left: 50%; transform: rotate(-5deg); }
    75% { left: 75%; transform: rotate(15deg); }
    100% { left: 100vw; transform: rotate(0deg); }
}

@keyframes flyAcross2 {
    0% { right: -50px; transform: rotate(0deg) scaleX(-1); }
    25% { right: 25%; transform: rotate(-10deg) scaleX(-1); }
    50% { right: 50%; transform: rotate(5deg) scaleX(-1); }
    75% { right: 75%; transform: rotate(-15deg) scaleX(-1); }
    100% { right: 100vw; transform: rotate(0deg) scaleX(-1); }
}

@keyframes flyAcross3 {
    0% { left: -50px; transform: rotate(0deg); }
    30% { left: 30%; transform: rotate(-10deg); }
    60% { left: 60%; transform: rotate(10deg); }
    100% { left: 100vw; transform: rotate(0deg); }
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .main-invite {
        max-width: 100%;
    }
    
    .honey-road {
        width: 90px;
        height: 200px;
    }
    
    .honey-blob {
        transform: scale(0.8);
    }
    
    .maps-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .address-text {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .bee {
        font-size: 25px;
    }
    
    .particle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .honey-road {
        width: 70px;
        height: 150px;
    }
    
    .honey-blob {
        transform: scale(0.6);
    }
    
    .maps-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .address-text {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .bee {
        font-size: 20px;
    }
    
    .particle {
        font-size: 14px;
    }
}

/* Efeito especial de brilho no botão */
@keyframes honeyGlow {
    0%, 100% {
        box-shadow: 
            0 8px 20px rgba(255, 165, 0, 0.4),
            0 0 0 3px rgba(255, 215, 0, 0.2),
            inset 0 2px 8px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 8px 20px rgba(255, 165, 0, 0.6),
            0 0 0 3px rgba(255, 215, 0, 0.4),
            0 0 20px rgba(255, 215, 0, 0.3),
            inset 0 2px 8px rgba(255, 255, 255, 0.4);
    }
}

.maps-button {
    animation: honeyGlow 3s ease-in-out infinite;
}

