/***************************************************************/
/* CSS Stylesheet for Clínica Audra */
/* Developed by Pedro Costa */
/* Last updated: May 2025 */

/***************************************************************/
/* Global Styles */
/***************************************************************/

body {
    font-family: "Zilla Slab", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #cfcfcf;
    background-size: cover;
}

h1 {
    font-size: 65px;
    font-weight: 500;
    padding: 15px 0px;
    color: #333;
}

h2 {
    font-size: 42px;
    font-weight: 100;
    padding: 15px 0px;
    color: #333;
}

h3 {
    font-size: 32px;
    font-weight: 500;
    padding: 15px 0px;
    color: #333;
}

h4 {
    font-size: 25px;
    font-weight: 400;
    padding: 15px 0px;
    color: #333;
}

h5 {
    font-size: 21px;
    font-weight: 500;
    padding: 15px 0px;
    color: #333;
}

.divisor {
    width: 66%;
    height: 3px;
    background-color: #D2B25B;
    margin: 15px 0px;
}

p {
    font-size: 20px;
    font-weight: 400;
    padding: 15px 0px;
    line-height: 28px;
    letter-spacing: -0.5px;
    color: #000;
}

button {
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 1px;
    text-decoration: underline;
    padding: 15px 45px;
    background-color: #D2B25B;
    color: #fff;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    margin: 25px auto;
}

button:hover {
    background-color: #A18846;
    color: #fff;
}

.p-0 {
    padding: 0px !important;
}

.m-0 {
    margin: 0px !important;
}

.clearfix {
    clear: both;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/*******************************
ANIMATIONS
*******************************/

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/*******************************
HEADER
****************************/

.header-links {
    background-color: #222;
}

.social-links {
    color: #fff;
    padding: 10px 0px;
}

.social-links i {
    color: #fff;
    font-size: 18px;
    margin-right: 25px;
}

.social-links a:hover i {
    color: #D2B25B;
}

header {
    background-color: #333;
}

.logo-menu-holder {
    background-color: #333;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-menu-holder .logo {
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.logo-menu-holder .logo img {
    width: 120px;
}

.logo-menu-holder nav {
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.5px;
    display: none;
    text-align: center;
    line-height: 20px;
}

.logo-menu-holder nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.logo-menu-holder nav ul li {
    display: inline-block;
    margin-right: 25px;
}

.logo-menu-holder nav ul li a {
    display: block;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.logo-menu-holder nav ul li.current-menu-item a,
.logo-menu-holder nav ul li a:hover {
    border-bottom: 3px solid #D2B25B;
}

.logo-menu-holder .mobile-menu-btn {
    font-size: 32px;
    cursor: pointer;
    color: #fff;
    border-radius: 12px;
    border: 1px solid #333;
    padding: 10px 15px;
}

.logo-menu-holder .mobile-menu-btn:hover {
    background-color: #333;
    color: #fff;
}

.mobile-menu-nav-holder {
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-in;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
    position: relative;
}

.mobile-menu-nav-holder.open {
    max-height: 400px;
    overflow: auto;
}

.mobile-menu-nav-holder nav {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.mobile-menu-nav-holder nav ul {
    list-style: none;
    display: block;
    align-items: center;
}

.mobile-menu-nav-holder nav ul li {
    display: block;
}

.mobile-menu-nav-holder nav ul li a {
    color: #333;
    text-decoration: none;
    padding: 25px 15px;
    border-bottom: 1px solid #ccc;
    display: block;
    width: 100%;
}

.mobile-menu-nav-holder nav ul li a:hover,
.mobile-menu-nav-holder nav ul li.current-menu-item a {
    background-color: #333;
    color: #fff;
    border-bottom: 2px solid #D2B25B;
    border-top: 1px solid #A18846;
}


/*******************************
HERO
****************************/

.hero {
    background-color: #fff;
    padding: 25px 0px;
}

.hero img {
    width: 100%;
}

.hero .logo-juntas {
    width: 85%;
}

.rounded {
    border-radius: 24px;
}

/*******************************
ABOUT
****************************/

.about {
    text-align: center;
    padding: 50px 0px;
    background-color: #f2f2f2;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
}

.about .divisor {
    width: 21%;
    margin: auto;
}

.about .photo-holder {
    border-radius: 12px;
    overflow: hidden;
    height: 455px;
}

.about .photo-holder img {
    width: 160%;
    transform: translateX(-20%);
}

.about .about-effect-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.about .about-effect-item {
    position: relative;
}

.about .path1 {
    fill: #6EC1E4;
    height: 125px;
    width: 125px;
    display: block;
    box-sizing: border-box;
    position: absolute;
    display: none;
}

.about .path2 {
    fill: #666;
    height: 125px;
    width: 125px;
    display: block;
    box-sizing: border-box;
    position: absolute;
    display: none;
}


/*******************************
SERVICES
****************************/

.services {
    padding: 50px 0px;
    background-color: #fff;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
}

.services img {
    width: 100%;
}

.services .services-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    padding: 0;
    margin: 0;
    margin-top: 40px;
    text-align: center;
}

.services .services-holder .service {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 50%;
    border-right: 1px solid rgba(214, 214, 214, 0.5);
    padding: 15px 50px;
}

.services .services-holder .service img {
    width: 60%;
}

.services .services-holder .service img.lavieen {
    position: relative;
    left: -13px;
}

.services .services-holder .service .divisor {
    margin: auto;
    width: 75%;
}

.services button {
    width: 66%;
    margin: auto;
    margin-top: 50px;
    padding: 25px 45px;
    border-radius: 30px;
    background-color: #54595F;
    font-weight: 500;
}

/*******************************
PROCEDURES
****************************/

.procedures {
    padding: 50px 0px;
    background-color: #fff;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
}

.procedures img {
    width: 100%;
}

/*******************************
ABOUT SERVICES
****************************/

.about-services {
    margin-top: 25px;
    padding: 50px 0px 25px 0px;
    background-color: #fff;
}

.about-services .divisor {
    background-color: #6ec1e4;
    width: 25%;
    position: relative;
    left: 25%;
}

.about-services p {
    padding: 15px 30px;
    text-align: left;
}

.about-services button {
    width: 85%;
    margin: auto;
    margin-top: 50px;
    padding: 25px 45px;
    border-radius: 60px;
    background-color: #6EC1E4;
    font-weight: 700;
    font-size: 28px;
}

.about-services img {
    width: 100%;
    padding: 15px;
    margin-top: 15px;
}

/*******************************
CASES
****************************/

.cases {
    margin-top: 25px;
    padding: 50px 0px;
    background-color: #fff;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
}

.cases .divisor {
    background-color: #D2B25B;
    width: 25%;
    position: relative;
}

.cases h3 {
    font-size: 32px;
    font-weight: 300;
    padding: 15px 0px 0px;
}

.cases h2 {
    font-size: 48px;
    padding: 10px 15px 0px;
}

.cases ul {
    list-style: none;
    padding: 15px 30px;
    text-align: left;
    font-size: 20px;
    margin-top: 15px;
}

.cases ul li i {
    color: #D2B25B;
    padding: 5px;
}

.cases button {
    background-color: #73431D;
    color: #fff;
    width: 45%;
    margin: auto;
    margin-top: 25px;
    padding: 20px 45px;
    border-radius: 60px;
    font-weight: 300;
    font-size: 18px;
}

.cases .cases-holder {
    padding: 30px;
}

.cases .cases-holder .case {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 20px 0px;
}

.cases .cases-holder .case img {
    width: 100%;
    height: 100%;
}

.cases-swiper img {
    width: 100%;
    border-radius: 12px;
}

.cases-swiper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}



/*******************************
CONTENT
****************************/

.content {
    padding: 50px 0px;
    background-color: #fff;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
}

.content em {
    font-style: italic;
}

.content strong {
    font-weight: 700;
}

.content .divisor {
    background-color: #D2B25B;
    width: 25%;
    position: relative;
    margin: auto;
}

.content h3 {
    font-size: 32px;
    font-weight: 300;
    padding: 15px 0px 0px;
}

.content h2 {
    font-size: 48px;
    padding: 10px 15px 0px;
}

.content ul {
    list-style: none;
    padding: 15px 30px;
    text-align: left;
    font-size: 20px;
    margin-top: 15px;
}

.content ul li i {
    color: #D2B25B;
    padding: 5px;
}

.content button {
    background-color: #73431D;
    color: #fff;
    width: 51%;
    margin: auto;
    margin-top: 25px;
    padding: 20px 45px;
    border-radius: 60px;
    font-weight: 300;
    font-size: 18px;
}

.content img {
    width: 100%;
}

.content .content-holder {
    padding: 30px;
}

.content .content-holder .case {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    margin: 20px 0px;
}

.content .content-item img {
    width: 100%;
    border-radius: 12px;
}

.content .content-item p {
    padding: 25px 10px;
    line-height: 33px;
}

.content.interna .content-heading {
    margin-bottom: 25px;
}

.content.interna .divisor {
    margin: 25px 0px;
    width: 42%;
}

.content.interna .divisor.auto {
    margin: 25px auto;
}

.content.interna .content-item p {
    padding: 10px;
}

.content.interna video {
    width: 100%;
}

.content.interna p.legenda {
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    text-align: left;
    line-height: 18px;
    padding-top: 5px;
}

.content .pos-cirurgia {
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 25px;
}

.content .pos-cirurgia img {
    position: relative;
    top: -55%;
    width: 100%;
}

.content .mosaico {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.content .mosaico .mosaico-item {
    width: 25%;
}

.content .mosaico .mosaico-item img {
    width: 100%;
}

.content .mosaico .mosaico-item:nth-child(1) {
    flex: 0 1 49%;
}

.content .mosaico .mosaico-item:nth-child(2) {
    flex: 0 1 49%;
}

.content .mosaico .mosaico-item:nth-child(3) {
    flex: 0 1 100%;
}

.content .mosaico .mosaico-item:nth-child(4) {
    flex: 0 1 100%;
}

.content .mosaico .mosaico-item:nth-child(5) {
    flex: 0 1 49%;
}

.content .mosaico .mosaico-item:nth-child(6) {
    flex: 0 1 49%;
}

.content .mosaico .mosaico-item:nth-child(7) {
    flex: 0 1 100%;
}

.content .tratamentos_esteticos_btn {
    background-color: #A18846;
    color: #fff;
    width: 75%;
    margin: auto;
    margin-top: 25px;
    padding: 20px 45px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    text-decoration: none;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 25px;
    float: none !important;
}

.full-stripe-img img {
    width: 100%;
    margin-bottom: -5px;
}

.special-about {
    position: relative;
    height: 100%; /* Adjust based on your needs */
    overflow: hidden;
    background-image: url('../img/Apresentacao-sem-titulo-2.png');
    background-size: cover;
    background-position: 0% 25%;
    background-attachment: fixed; /* This creates the parallax effect */
}

.parallax-content {
    position: relative;
    z-index: 1;
    /* Add padding, colors, etc. for your content */
}

.parallax-overlay {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 150%;
    background-color: #ffd2aa;
    opacity: 0.4;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.dra-thais-batista {
    padding: 50px;
    background-color: #fff;
    border-radius: 12px;
    opacity: 0.8;
}

.dra-thais-batista h3 {
    padding-right: 60px;
}

.dra-thais-batista p {
    padding: 0px !important;
    font-weight: 300;
    font-size: 17px;
    line-height: 28px !important;
}

.content-dra-thais-batista p {
    font-size: 17px;
}

.content-dra-thais-batista p strong {
    font-weight: 700;
}

.contato {
    font-family: "Zilla Slab", serif;
    padding-bottom: 0px;
}

.contato .content-item {
    padding-top: 50px;
}

.contato .content-item h3 {
    padding: 25px;
    font-weight: 500;
}

.contato .content-item p i {
    font-size: 48px;
    padding: 15px 0px;
    color: #73431D;
}

.contato .content-item p a {
    color: #000;
}

.contato .content-item p a:hover {
    color: #73431D;
}

.contato iframe {
    margin-top: 50px;
    width: 100%;
    height: 400px;
    margin-bottom: -3px;
}

.contato .contato-holder {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px 50px;
}

/* Carousel - Swiper */
.swiper,
.swiper-contato {
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.swiper-pagination-bullet-active {
    background-color: #fff;
}


/*******************************
CONTACT - HOME
****************************/

.contact {
    padding: 25px 0px 35px;
    background-color: #AC9D77;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
}

.contact .container {
    background-color: #fff;
    border-radius: 12px;
}

.contact .contact-heading {
    padding: 15px;
}

.contact .contact-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 25px 0px 50px;
}

.contact .divisor {
    background-color: #54595F;
    width: 33%;
    margin: 15px auto;
}

.contact h5 {
    font-weight: 300;
}

.contact .contact-item {
    padding: 25px;
}

.contact .contact-item i {
    color: #333;
    padding: 5px;
    font-size: 52px;
}

.contact .contact-item p,
.contact .contact-item p a {
    color: #CC3366;
    padding: 5px;
    text-decoration: underline;
}

/*******************************
FOOTER
****************************/

footer {
    background-color: #fff;
    border-top: 2px solid #73431D;
}

footer .logo-footer {
    max-width: 175px;
    position: relative;
    left: -15px;
}

.footer-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 25px 0px 50px;
}

.footer-item {
    width: 100%;
    padding: 15px;
}

.footer-item img {
    width: 100%;
}

.footer-item .social-links {
    background-color: #fff;
}

.footer-item .social-links i {
    color: #666;
    font-size: 21px;
}

.footer-item .social-links a:hover i {
    color: #D2B25B;
}

.footer-item.contato h6 {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 21px;
    padding: 15px 0px 25px;
}

.footer-item.contato ul {
    list-style: none;
}

.footer-item.contato ul li a {
    font-family: "Raleway", sans-serif;
    color: #333;
    font-size: 15px;
    text-decoration: none;
    font-weight: 300;
    display: block;
    padding: 10px 0px;
}

.footer-item.contato ul li a:hover {
    color: #D2B25B;
}

.footer-item.contato ul li a i {
    color: #73431D;
    padding: 0px 15px;
    font-size: 21px;
    position: relative;
    top: 3px;
}

.footer-copyright {
    border-top: 1px solid #ccc;
    text-align: center;
    font-family: "Raleway", sans-serif;
}

.footer-copyright p {
    font-size: 14px;
    line-height: 16px;
    color: #666;
}

.footer-copyright p strong {
    color: #333;
}