/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #eee8e5;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 40px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

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

.logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.buttons-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Botões */
.whatsapp-btn,
.doctoralia-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background-color: #6c725c;
    color: white;
}

.primary-btn:hover {
    background-color: #5a5f4d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.secondary-btn {
    background-color: #9e573c;
    color: white;
}

.secondary-btn:hover {
    background-color: #8a4a33;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.tertiary-btn {
    background-color: #eee8e5;
    color: #6c725c;
    border: 2px solid #6c725c;
}

.tertiary-btn:hover {
    background-color: #6c725c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
    border-radius: 30px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.profile-photo {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

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

.hero-text {
    flex: 1;
    min-width: 300px;
}

.main-title {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #6c725c;
    margin-bottom: 10px;
    line-height: 1.2;
}

.subtitle {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #9e573c;
    margin-bottom: 20px;
}

.description {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

/* Services Section */
.services {
    padding: 40px 0;
}

.section-title {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #6c725c;
    text-align: center;
    margin-bottom: 30px;
}

.services-compact {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 4px solid #9e573c;
    text-align: center;
}

.services-list {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
    border-radius: 30px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.profile-photo-2 {
    width: 350px;
    height: 420px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    border: 3px solid #9e573c;
}

.profile-photo-2:hover {
    transform: scale(1.03);
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
    font-weight: 400;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid rgba(108, 114, 92, 0.2);
    margin-top: 60px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content,
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text,
    .cta-text {
        min-width: auto;
    }
    
    .main-title {
        font-size: 2.8rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .profile-photo,
    .profile-photo-2 {
        width: 280px;
        height: 350px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-btn,
    .doctoralia-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .buttons-container {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .profile-photo,
    .profile-photo-2 {
        width: 240px;
        height: 300px;
    }
    
    .hero,
    .cta {
        padding: 40px 0;
        margin: 20px 0;
    }
    
    .services {
        padding: 40px 0;
    }
}

/* Animações suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.services,
.cta {
    animation: fadeInUp 0.8s ease-out;
}

/* Efeitos de hover adicionais */

