* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #2a2a2a;
}

.container {
    width: 100%;
    max-width: 900px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.image-wrapper {
    position: relative;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.image-wrapper:hover .profile-image {
    transform: scale(1.02);
}

.text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.name-section {
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: -0.5px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.specialty {
    font-size: 1.15rem;
    color: #7a7a7a;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.credentials {
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.credentials p {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.8;
    margin: 0;
}

.credentials p span {
    font-weight: 600;
    color: #2a2a2a;
}

.coming-soon {
    text-align: center;
    padding: 20px;
    background: #f0ebe5;
    border-radius: 8px;
}

.coming-soon p {
    font-size: 1rem;
    color: #6b5b52;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    flex: 1;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.closing {
    font-size: 0.95rem;
    color: #6a6a6a;
    line-height: 1.8;
    font-style: italic;
}

.closing strong {
    font-style: normal;
    color: #2a2a2a;
    font-weight: 600;
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Mobile responsivo para o botão flutuante */
@media (max-width: 480px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* Responsivo para tablets */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .specialty {
        font-size: 1.05rem;
    }

    .text-wrapper {
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Responsivo para mobile */
@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .hero-content {
        gap: 25px;
    }

    h1 {
        font-size: 1.8rem;
        letter-spacing: 0;
    }

    .specialty {
        font-size: 0.95rem;
    }

    .credentials {
        padding: 15px 0;
    }

    .credentials p {
        font-size: 0.9rem;
    }

    .coming-soon {
        padding: 15px;
    }

    .coming-soon p {
        font-size: 0.95rem;
    }

    .btn {
        padding: 11px 24px;
        font-size: 0.9rem;
    }

    .closing {
        font-size: 0.9rem;
    }
}
