* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background: white;
    min-height: 100vh;
}

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

.hero {
    position: relative;
    height: 350px;
    margin-bottom: 80px;
    background: #fff7f3;
    border-radius: 0 0 50% 50%;
}

.hero h1 {
    font-size: 50px;
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-container h2 {
    color: #522103;
}
 
.hero-bg {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.profile {
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.profile-img-container {
    width: 160px;
    height: 160px;
    margin: 0 auto 25px;
    border-radius: 50%;
    padding: 8px;
    background-color: white;
    box-shadow: 0 4px 15px rgba(89, 38, 38, 0.1);
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

h1 {
    color: #522103;
    margin-bottom: 10px;
    font-size: 2.5em;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bio-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    width: 100%;
}

.bio {
    color: #522103;
    font-size: 0.9em;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    display: inline-block;
    max-width: 100%;
    transition: font-size 0.3s ease;
}

.typing {
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typing 3.5s steps(40, end) forwards;
    display: inline-block;
    max-width: 100%;
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 20px;
    background-color: #522103;
    animation: blink 0.75s step-end infinite;
    margin-left: 2px;
    vertical-align: middle;
}



@keyframes typing {
    from { 
        width: 0;
    }
    to { 
        width: 100%;
    }
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.link-card {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #592626;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(89, 38, 38, 0.1);
    border: 1px solid rgba(89, 38, 38, 0.1);
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(89, 38, 38, 0.15);
    background: #FFF9F5;
}

.link-card i {
    font-size: 1.2em;
    color: #522103;
}

/* Novo estilo para os cards de curso */
.curso-cards {
    padding: 0 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.curso-card-minimal {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    position: relative;
}

.curso-card h1{
    color: #522103
}

.curso-content {
    padding: 30px;
    z-index: 2;
}

.curso-card-minimal h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #8B4513;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.curso-card-minimal h2::after {
    display: none;
}

.tag {
    display: inline-block;
    background: #d49961;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    margin-bottom: 7px;
    
}

.curso-card-minimal p {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.9;
}

.saiba-mais {
    display: inline-block;
    background: #522103;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.saiba-mais:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(9, 9, 9, 0.665);
}

.curso-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.curso-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sections {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 0 20px;
    box-shadow: 0 4px 15px rgba(89, 38, 38, 0.1);
    border: 1px solid rgba(89, 38, 38, 0.1);
}

.section {
    margin-bottom: 40px;
}

.section:last-child {
    margin-bottom: 0;
}

h2 {
    color: #522103;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

h2::after {
    display: none;
}

.mapa {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(89, 38, 38, 0.1);
    border: 1px solid rgba(89, 38, 38, 0.1);
}

.footer {
    background: #fff7f3;
    padding: 30px 20px;
    margin-top: 60px;
    border-radius: 20px 20px 0 0;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #592626;
}

.footer p {
    margin-bottom: 15px;
    font-size: 0.9em;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    color: #592626;
    font-size: 1.5em;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #8B4513;
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    
    .hero {
        height: 400px;
        border-radius: 0 0 30% 30%;
    }
    
    .profile-img-container {
        width: 140px;
        height: 140px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .sections {
        padding: 20px;
        margin: 0 10px;
    }

    .curso-card-minimal h2 {
        font-size: 1.6em;
    }
    
    .footer {
        padding: 20px;
        margin-top: 40px;
    }
    
    .bio {
        font-size: 0.8em;
        letter-spacing: 1px;
    }
    
    .bio-container {
        max-width: 95%;
        gap: 8px;
    }
}

.logo-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.clinic-logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .clinic-logo {
        max-width: 250px;
    }
    
    .logo-section {
        margin: 40px auto;
    }
} 