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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-top{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.top-header {
    background-color: #4d0072; 
    color: white;
    font-size: 0.85em;
    padding: 10px 0;
    text-align: center;
}
.left-info {
    font-weight: 600;
}

.center-info{
    font-weight: 600;
    color: white;
    margin-right: 0px;
    
   
}

.right-info {
    align-items:center;
    gap: 10px;
    color: #fff;
    text-align:  center;
}



.main-nav {
    background-color: #fff;
    padding: 5px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky; 
    top: 0;
    z-index: 1000; 
}

.main-nav .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    gap: 20px;
}

.logo img {
    height: 90px; 
    width: auto;
    
}


.menu-mini{
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: #4d0072;
    position: relative;
    transition: background-color 0.3s ease;
    
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #4d0072;
    transition: all 0.3s ease;
    left: 0;
}
.hamburger::before {
    top: -8px;
}
.hamburger::after {
    top: 8px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px; 
}

.main-nav ul.active {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.main-nav ul li a {
    text-decoration: none;
    color: #555; 
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.3s ease;
    text-transform: uppercase; 
    font-size: 0.95em;
}

.main-nav ul li a:hover {
    color: #4d0072
}

.hero-slider {
    align-items: center; 
    justify-content: center; 
    min-height: 550px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-container{
    display: flex;
    width: 100%;
    height: 100%;
    position:absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease-in-out;
}

.slider-slide{
    min-width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image {
    position: absolute;
    height: 100%;  
    width: 100%;
    
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1; 
}

.hero-content {
    position: relative;
    z-index: 2; 
    text-align: center; 
    color: #fff; 
    padding: 40px;
}

.hero-content h1 {
    font-size: 3.5em;
    color: #fff; 
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); 
}

.hero-content p {
    font-size: 1.5em; 
    color: #f0f0f0; 
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); 
}


#btn-card{
    background-color: #4d0072; 
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 450;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 10px;

}
.btn-read-more {
    background-color: #4d0072; 
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block; 
    margin-bottom: 50px;
}

.btn-read-more:hover {
    background-color: #705fb8; 
}

/* Slider Arrows */

.slider-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    color: #f5f5f5;
    font-size: 2em;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;

}

.slider-arrow:hover {
    color: #705fb8;
}

.left-arrow {
    left: 20px; 
}

.right-arrow {
    right: 20px;
}

/* About us section */

.about-us {
    padding: 80px 0;
    background-color: #fff;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 1;
    padding-right: 20px;
}

.about-content h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color:#4d0072;
    font-family: "Oooh Baby", cursive;
}

.about-content p {
    font-size: 1.em;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

/*Coluna imagem*/

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1000px;
    box-shadow: 04px 15px rgba(0, 0, 0, 0.1);
}



/*artigo*/

.article{
    padding: 80px 0;
    background-color: #f4f4f4;
}

.article-flex {
    display: flex;
    align-items: center;
    gap: 100px;
}
.article-content {
    flex: 1;
    padding-right: 20px;
}


.article-flex h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #4d0072;
    line-height: 1.2;
    font-family: "Oooh Baby", cursive;
}
    

.article-flex p {
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

#subtitulo{
    padding-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
    color: #4d0072;
}

.article-image{
    flex: 1;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1000px;
    box-shadow: 04px 15px rgba(0, 0, 0, 0.1);
}

.services {
    padding: 80px 0 0 0px ;
    background-color: #f1f1f1;
    
}

.services .text-center {
    text-align: center;
    margin-bottom: 40px;
}

.services h2{
    font-size: 2.5em;
    color: #4d0072;
    margin-bottom: 10px;
    font-family: "Oooh Baby", cursive;
    gap: 10px;
}

.btn-inter{
    padding-top: 30px ;
}

#text-int{
    max-width: 100%;   
    font-size: 1.3em;
    color: #333;
}

#int1{
    font-size: 2.2em;
    color: #fff;
    margin-bottom: 10px;
}

.services p {
    font-size: 1.2em;
    color: #fffcfc;
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
}

#int{
    font-size: 1em;
    color: #ffffff;
    margin-top: 10px;
    line-height: 1;
    
}

.img-services {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;  
   
}

.service-item {
    position: relative;
    flex: 1;
    height: 650px;
    overflow: hidden;
    cursor: pointer;
}

.service-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    
}

.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(79, 70, 104, 0.8);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay-inner{
    text-align: center;
    padding: 10px;
}

.overlay-text h4 {
    margin: 0 0 5px;
    font-size: 0.9em;
}

.overlay-text p {
    font-size: 0.9em;
    margin: 0;
}

.service-item:hover img {
    transform: scale(1.1); 
}

.service-item:hover .overlay-text {
    opacity: 1;
    visibility: visible;
}


.dr-jaime{
    padding: 80px 0;
    background: linear-gradient(rgba(127, 126, 173, 0.5) , rgba(127, 126, 173, 0.5)), url('../img/fundo-dr-jaime.jpg') no-repeat center center/cover;
    text-align: center;
    background-attachment: fixed;
}

.dr-jaime .text-title {
    margin-bottom: 50px;
}

.dr-jaime .text-title h2 {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 10px;
}

.dr-jaime .text-title p {
    font-size: 1.5em;
    color: #fff;
}

.dr-jaime-card{
    max-width: 900px;
    margin: 0 auto;
}

.dr-card {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-bottom: 20px;
}
.dr-card-img {
   flex: 0 0 40%;
}

.dr-card-img img {
    width: 100%;
    height: 100%;
    border-radius: 8px 0 0 8px;
    object-fit: cover;
}

.dr-card-info{
    flex: 1;
    padding: 30px;
    text-align: justify;
}

.dr-card-info h3 {
    font-size: 1.8em;
    color: #4d0072;
    margin-bottom: 25px;
    font-weight: 400;
}

.contact-form-inf{
    padding: 100px 0;
    background: linear-gradient(rgba(253, 253, 253, 0.219) , rgba(253, 253, 253, 0.219)), url('../img/fundo_contato.jpg');
}

.contact-content {
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1000px;
    min-height: 500px;
}

.contact-inf{
    flex: 1;
    min-width: 300px;
    padding: 20px;
    
    
}

.contact-inf h2{
    font-size: 2.2em;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

.info-group{
    margin-bottom: 20px;
}

.info-label{
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-size: 0.9em;
    text-transform: uppercase;
}

.info-text{
    color: #666;
    line-height:1.6;
    font-size: 1em;
}

.submit-button ion-icon{
    font-size: 1em;

}

.contact-form {
    min-width: 400px;
    padding: 15px;
    border-radius: 8px;
    gap: 20px;
    
    
}

.contact{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 80px;
    
}

.contact-form h2 {
    font-size: 4em;
    color:#4d0072;
    /* margin-bottom: 30px; */
    text-align: left;
    font-family: "Oooh Baby", cursive;
}

.contact-form p{
    font-family: 'Open Sans', sans-serif;
    font-size: 2em;
    color:#4d0072;
}

.contact-page .form-group{
    margin-bottom: 20px;
}

.contact-page .form-group:last-of-type {
    margin-bottom: 0;
}

.form-page{
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #c9c4ae;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    color: #333;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: #f1f1f1;
    border-radius: 8px;
}

.form-page:focus {
    border-color: #573bd4; 
    box-shadow: none;
}

.form-page::placeholder {
    color: #888;
}

textarea .form-page {
    resize: vertical; 
    background-color: #fff;
}

.submit-button{
    background-color: #4d0072;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    margin-top: 20px;
    align-items: center;
    gap: 10px;
}

.submit-button:hover {
    background-color: #6a4ce0;
}

.main-footer{
    background-color: #fff;
    color: #666;
    padding-top: 60px;
    font-size: 0.9em;
   
}

.footer-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
   
    
}

.footer-left,
.footer-center,
.footer-right {
    flex: 0; 
    min-width: 30%; 
    padding: 0 10px; 
}

.footer-left .footer-logo img {
    height: 100px; 
    width: auto;
    margin-bottom: 15px;
}

.footer-left p {
    line-height: 1.8em;
    font-size: 1em;
}

.footer-center h3,
.footer-right h3 {
    color:#333; 
    font-size: 1.5em; 
    margin-bottom: 20px;
    font-weight: 600; 
}

.footer-center p,
.footer-right p {
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-right p{ 
    margin-right: 8px; 
    color: #666; 
}


.footer-bottom { 
    background-color: #fff; 
    padding: 15px 0; 
    font-size: 0.85em;
    color: #888; 
    text-align: center; 
    border-top: 1px solid #eee; 
}

.footer-bottom p {
    margin-left: 20px;
}

#rpv{
    color: #888;
    text-decoration: none;
}
.icons{
    margin-top: 20px;
    align-items: center;
    display: flex;
}

.icons a {
    margin: 0 10px; 
    
}
.icons img{
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

.icons:hover img{
    transform: scale(1.1);
}

.icons-header{
    margin-top: 10px;
    padding-left: 20px;
}

.icons-header a{
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    
    
}

.icons-header img{
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
    
}

.icons-header:hover img{
    transform: scale(1.1);
}
    



/*page-drJaime*/

.drjaime-content{
    padding: 80px 0;
    display: flex;
    padding-right: 20px; 
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.drjaime-content h1{
    font-family: "Oooh Baby", cursive;
    font-size: 2.5em;
    color: #4d0072;
    text-align: center;
   
}

.drjaime-content p, .drjaime-content h3{
    text-align: justify;
}

.dr-flex{
    display: flex;
    justify-content: space-between;
    gap: 100px;
    padding: 80px 0;

}

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

.dr-image img{
    height: 500px;
    border-radius: 50%;

    
    
}

.stats-section{
    padding: 80px 0;
    background-color: #4d0072;
    flex: 1 ;
    padding-top: 20px;
    margin-top: 0;
}

.text-center {
    color: #fff;
    padding: 20px;
    text-align: center;   
}

.text-center h1{
    font-family: "Oooh Baby", cursive;
    font-size: 2.2em;
    line-height: 2.5em;

}
.stats-grid{
    display: grid;
    align-items: start;
    justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 30px;
    padding: 20px;   
}

.stats-grid h2{
    font-size: 2.5em;  
}

.stats-grid p{
    font-size: 1.2em;  
}

.premium-content{
    display: flex;
    justify-content: space-between;
    gap: 100px;
    padding: 80px 0;
    
}

.premium{

    background-color: #f1f1f1;  
}
.group-premium h1{
    font-family: "Oooh Baby", cursive;
    font-size: 4em;
    color: #4d0072;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-bottom: 20px;

    
}

.group-premium{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    
}

.group-premium h3{
    font-size: 1em;
    line-height: 1.5em;
    color: #4d0072;
    
    
}

.group-premium p{
    display: flex;
    padding-left: 40px; 
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    text-align: justify;
    
    
}

.title-topic{
   
    font-size: 1.3em;
    color: #575656;
    margin: 10px;
    text-align: left;
    
}

.title-topic::before{
    content: "•";
    left: 0;
    font-size: 1em;
    color:#4d0072;
    margin-right: 10px;
      
}

.atv{
    background-color: #ffffff;
}

.atv-content{
    align-items: center;
    padding: 80px 0;
    text-align: left;
    flex: 1;
}

.atv-content h1{
    font-family: "Oooh Baby", cursive;
    font-size: 4em;
    text-align: center;
    color: #4d0072;
}

.atv-content p{
    font-size: 1em;
    color: #333;
    text-align: justify;
}

.group-atv{
    display: flex;
    padding: 30px; 
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.group-atv p{
    display: flex;
    padding-right: 20px; 
    justify-content: left;
    align-items:center;
    height: 100%;
}

/*page sobre nos*/
.aboutus{
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.753) , rgba(255, 255, 255, 0.753)), url('../img/clinica.jpg') no-repeat center center/cover;
    text-align: center;
    background-attachment: fixed;
}

.aboutus-content p{
    color: #000000;
    font-size: 1.2em; 
}

#title-aboutus{
    font-size: 3.5em;
    color: #4d0072;
}

a {
    text-decoration: none;

}

#read{
    color: #4d0072;
    
}

.intercorrencias{
    padding: 80px 0;
    background-color: #c9c4ae;
    /* background: linear-gradient(rgba(255, 255, 255, 0.753) , rgba(255, 255, 255, 0.753)), url('../img/.jpg') no-repeat center center/cover; */
    text-align: center;
}

.inter-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.principais_intercorrências{
    justify-content: center;
    align-items: center;
    flex: 1;
}

.inter-item{
    width: 100%;
    height: auto;
}

.inter-item img{
     border-radius: 20px;
}

.whatsapp-float {
    position: fixed; 
    width: 60px; 
    height: 60px; 
    bottom: 40px; 
    right: 40px; 
    border-radius: 50px; 
    text-align: center; 
    font-size: 30px; 
    z-index: 1000; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
}

.whatsapp-float img.whatsapp-icon {
    width: 100px; 
    height: 100px; 
    vertical-align: middle; 
    border: none; 
    margin-top: 2px; 
}

.whatsapp-float:hover {
    background-color: #075E54; 
    transform: scale(1.05); 
    transition: all 0.3s ease; 
}

.whatsapp-badge {
    position: absolute; 
    top: -10px; 
    right: 70px; 
    background-color: #075E54; 
    color: #FFF; 
    padding: 5px 10px; 
    border-radius: 5px; 
    font-size: 14px; 
    white-space: nowrap; 
    opacity: 0; 
    visibility: hidden; 
    transform: translateX(10px); 
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; 
}

.whatsapp-badge::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px; 
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #075E54; 
    transform: translateY(-50%);
}


.whatsapp-float:hover .whatsapp-badge {
    opacity: 1; 
    visibility: visible; 
    transform: translateX(0); 
}

.secao-necrose {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 80px ;
  text-align: justify;
}

.necrose-img {
  width: 100%;
  height: auto;
  
}

.necrose-conteudo h1 {
    font-family: "Oooh Baby", cursive;
    font-size: 3em;
    text-align: left;
    color: #4d0072;
    padding-top: 20px;
}

.conteudo{
  font-family: 'Open Sans', sans-serif;
  padding-bottom: 20px;
}

.necrose-conteudo h3 {
  font-family: "Oooh Baby", cursive;
  color: #4d0072;
  font-size: 2.3em;
}

.topicos {
  list-style-type:circle;
  padding: 0;
  padding-left: 25px;
  
}

.topicos li {
  margin-bottom: 15px;
  color: #4d0072;
  font-size: 1.1em;
  padding-top:10px;
  
}

.topicos p{
    padding-bottom: 10px;
}

.topicos strong {
  font-size: 1.1em;
  color: #000;
}

.necrose2{
    display: flex;
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
    align-items: center;
    padding-bottom: 80px;
    padding-top: 50px;
}

.img2-necrose{
    width: 100%;
    height: auto;
    padding: 80px 0;
    
}

.img2-necrose img{
    width: 300px;
    height: 400px;
    border-radius: 100%;
    
}
#img2-necrose img{
    width: 400px;
    height: 500px;
    border-radius: 100%;
}

#img2-protese img{
    width: 400px;
    height: 450px;
    border-radius: 100%;
}


.inter-grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    align-items: center;   
}

.text-inter h3{
    padding: 10px;
    font-family: "Oooh Baby", cursive;
    font-size: 1.5em;
    color:#4d0072

}

#inter{
    padding: 10px 5px;
    font-size: 0.9em;
    border-radius: 5px;
}

.interlist-item
{
    max-width: calc(100% 20px);
    height: auto;
    border-radius: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;

}

.intercorrencia{
    padding: 80px 0;
    text-align: center;
    background-color: #f1f1f1;
    
   
}

.btn-intercorrencia{
    padding-top: 4px;
}

.intercorrencia h2{
    font-size: 2.5em;
    color: #4d0072;
    margin-bottom: 10px;
    font-family: "Oooh Baby", cursive;
    gap: 10px;
}

.intercorrencia p{
    font-size: 1.2em;
    color: #fffcfc;
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
}


.img-inter{
    width: 100%;
    height: auto;
    
}

.img-inter img{
    border-radius: 50%;
    width: 200px;
    height: 200px;
}



/* Responsividade*/
@media (max-width: 768px) {

    .container-top {
        flex-direction: column;
        height: auto;
    }
    .top-header {
        padding: 15px 0;
    }
    .center-info {
        display: none; 
    }
    .right-info {
        justify-content: center;
        padding-top: 10px;
    }
    .main-nav .container {
        flex-direction: row;
        justify-content: space-between;
    }
    .main-nav ul {
        display: none;
        flex-direction: column;
        gap: 15px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 10px;
    }

    .menu-mini{
        display: block;
    }

    .about-flex,
    .article-flex,
    .dr-flex,
    .contact-content,
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    
    .img-services {
        flex-direction: column;
        align-items: center;
    }
    .service-item {
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }

    
    .dr-card {
        flex-direction: column;
    }
    .dr-card-img img {
        border-radius: 8px 8px 0 0;
    }
    .dr-card-info {
        padding: 20px;
    }
    .dr-card-info h3,
    .dr-card-info p {
        text-align: center;
    }
    .dr-image img {
        height: 300px;
    }

    .contact-form h2 {
        text-align: center;
        font-size: 2em ;
    }
    .info-group {
        text-align: center;
    }
    .contact-form {
        min-width: unset;
        width: 100%;
    }

    
    .footer-left,
    .footer-center,
    .footer-right {
        min-width: 100%;
        text-align: center;
    }
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .icons {
        justify-content: center;
    }

    .whatsapp-float{
        right: 20px;
    }

    .secao-necrose {
        max-width: 900px;
        margin: 0 auto;
        padding-top: 80px;
        text-align: justify;
    }

    .necrose-img {
        width: 100%;
        height: auto;
    }

    .necrose-conteudo h1 {
        font-family: "Oooh Baby", cursive;
        font-size: 3em;
        text-align: left;
        color: #4d0072;
        padding-top: 20px;
    }

    .conteudo {
        font-family: 'Open Sans', sans-serif;
        padding-bottom: 20px;
    }

    .necrose-conteudo h3 {
        font-family: "Oooh Baby", cursive;
        color: #4d0072;
        font-size: 2.3em;
    }

    .topicos {
        list-style-type: circle;
        padding: 0;
        padding-left: 25px;
    }

    .topicos li {
        margin-bottom: 15px;
        color: #4d0072;
        font-size: 1.1em;
        padding-top: 10px;
    }

    .topicos p {
        padding-bottom: 10px;
    }

    .topicos strong {
        font-size: 1.1em;
        color: #000;
    }

    .necrose2 {
        display: flex;
        max-width: 900px;
        margin: 0 auto;
        gap: 40px;
        align-items: center;
        padding-bottom: 80px;
        padding-top: 50px;
    }

    .img2-necrose {
        width: 100%;
        height: auto;
        padding: 80px 0;
    }

    .img2-necrose img {
        width: 300px;
        height: 400px;
        border-radius: 100%;
    }

    #img2-necrose img {
        width: 400px;
        height: 500px;
        border-radius: 100%;
    }

    #img2-protese img {
        width: 400px;
        height: 450px;
        border-radius: 100%;
    }

    .secao-necrose {
        padding: 40px 20px 20px 20px; 
        text-align: left; 
    }

    .necrose-conteudo h1 {
        font-size: 2.2em; 
        text-align: center;
    }

    .necrose-conteudo h3 {
        font-size: 1.8em; 
    }

    .conteudo, .topicos li, .topicos p {
        font-size: 1em; 
    }

    .necrose2 {
        flex-direction: column; 
        padding-top: 20px; 
        padding-bottom: 40px; 
        gap: 20px; 
        text-align: left;
    }
    .img2-necrose img, 
    #img2-necrose img,
    #img2-protese img {
        width: 100%; 
        max-width: 300px; 
        height: auto;
        border-radius: 10%; 
        
    }

    .img2-necrose {
        padding: 20px 0; 
    }

    .necrose-conteudo {
        text-align: center;
    }

    .necrose-img {
        max-width: 100%;
    }

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

@media (max-width: 480px) {
  
    .necrose-conteudo h1 {
        font-size: 1.8em;
    }

    .necrose-conteudo h3 {
        font-size: 1.5em;
    }

    .necrose-conteudo p, .topicos li, .topicos p {
        font-size: 0.9em;
    }

    .necrose-conteudo ul.topicos {
        padding-left: 15px; 
    }
}








