@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.heading-font {
    font-family: 'Playfair Display', serif;
}

.gold-gradient {
    background: linear-gradient(90deg, #D4AF37 0%, #F4E5C2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gold-border-gradient {
    border: 2px solid transparent;
    border-image: linear-gradient(90deg, #D4AF37 0%, #F4E5C2 100%);
    border-image-slice: 1;
}

.bg-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width=\'60\' height=\'60\' viewBox=\'0 0 60 60\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cg fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg fill=\'%23d4af37\' fill-opacity=\'0.05\'%3E%3Cpath d=\'M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z\'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}




.hero-image-circle {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 4px solid #d4af37; /* Cor dourada */
    overflow: hidden;
    background-image: url("../images/wendel_1.jpg"); /* Imagem do Dr. Wendel */
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6); /* Sombra dourada */
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.6); }
    100% { box-shadow: 0 0 50px rgba(212, 175, 55, 0.9); }
}

@media (max-width: 1024px) {
    .hero-image-circle {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 40px auto 0;
        width: 300px;
        height: 300px;
    }
}


/* Botão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
    text-decoration: none;
}

.whatsapp-float i {
    /* margin-top: 16px; */ /* Removido para centralizar com flexbox */
}

/* Animação de pulso para o botão do WhatsApp */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .whatsapp-float i {
        margin-top: 13px;
    }
}

