/*
Theme Name: Tema dra-celeste
Author: SignoTech
Version: 1.0
*/


/* GLOBAL */

:root {
    --primary-color: #E07A5F;
    --primary-dark: #41574D;
    --secondary-color: #73816A;
    --background-light: #E5E2DD;
    --background-opacity-20: #E5E2DD33;
    --text-white: #fff;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-dark);
    background-color: var(--background-light);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    padding-top: 80px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2 {
    font-weight: 600;
    margin-bottom: 2.5rem;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.3;
}

h2 {
    font-size: 2.2rem;
}

p {
    color: #555;
    margin-bottom: 3.5rem;
    font-size: 1rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.btn {
    padding: 10px 45px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.btn-primary {
    background-color: #E07A5F;
    color: #fff;
    border: 2px solid #E07A5F;
}

.fit-content {
    width: fit-content;
}

.btn-primary:hover {
    background-color: #d96a4a;
    border-color: #d96a4a;
}

.btn-secondary {
    background-color: #fff;
    color: #73816A;
    border: 2px solid #73816A;
}

.btn-secondary:hover {
    background-color: #73816A;
    color: #fff;
    border-color: #73816A;
}

.btn-green {
    background-color: #73816A;
    color: #fff;
    border: 2px solid #73816A;
    padding-top: 12px;
    padding-bottom: 12px;
}

.btn-green:hover {
    background-color: #41574D;
    border-color: #41574D;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    color: #41574D;
}

.section-header p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
}

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

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

.animate-from-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-from-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-from-bottom.animated,
.animate-from-left.animated {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.animate-on-scroll-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.2s;
}

.animate-on-scroll-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* HEADER */

.header {
    background-color: #fff;
    padding: 0.3rem 0;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.header .logo img {
    height: 70px;
}

.header .navbar {
    display: flex;
    gap: 2rem;
}

.header .navbar a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    transition: color 0.3s ease;
}

.header .navbar a:hover {
    color: #E07A5F;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #41574D;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease-out;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #555;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #555;
}

.mobile-nav a:hover {
    color: #E07A5F;
}

.mobile-menu .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* HERO */

.hero {
    padding: 5rem 0;
    background-color: #fff;
}

.hero-text h1 {
    color: #41574D;
}

.hero-text h1 .text-green-medium {
    color: #73816A;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
}

.hero-image .image-caption {
    text-align: center;
    margin-top: 1rem;
    color: #555;
    font-size: 0.9rem;
}

.hero-image .image-caption strong {
    display: block;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-text.animate-from-bottom.animated {
    transition-delay: 0.2s;
}

.hero-image.animate-from-left.animated {
    transition-delay: 0s;
}

/* SOBRE */

.sobre {
    padding: 6rem 3rem;
    background-color: #E5E2DD;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sobre-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    align-items: stretch;
    max-width: 1400px;
}

.sobre-text h2 {
    color: #41574D;
}

.sobre-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.sobre-image img {
    border-radius: 24px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sobre-image img {
    border-radius: 24px;
}

.info-boxes {
    margin-top: 2.5rem;
    display: flex;
    gap: 2rem;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-box i {
    font-size: 2rem;
    color: #E07A5F;
}

.info-box strong {
    display: block;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.info-box span {
    font-size: 0.9rem;
    color: #555;
}

/* TRATAMENTOS */

.tratamentos {
    padding: 5rem 0;
    background-color: #fafafa;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    color: #41574D;
}

.section-header p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0;
}

.tratamentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tratamento-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #fff;
    border: 1px solid #E5E2DD;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease-out,
        background-color 0.3s ease-out,
        border-color 0.3s ease-out;
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    border-radius: 12px;
    background-color: #E5E2DD;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease-out;
}

.card-icon img {
    width: 35px;
    height: 35px;
    filter: none;
    transition: filter 0.3s ease-out;
}

.tratamento-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #41574D;
    margin-bottom: 1rem;
}

.tratamento-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1.5rem;
    min-height: 50px;
}

.tratamento-card p,
.tratamento-card li {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.card-content {
    flex-grow: 1;
}

.tratamento-card:hover {
    transform: translateY(-10px);
    background-color: #F9F8F7;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.tratamento-card ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.tratamento-card li {
    font-size: 0.9rem;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.tratamento-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #E5E2DD;
}

.card-link {
    font-weight: 600;
    color: #41574D;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.card-link-white {
    color: #fff;
}

.card-link img {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease-out;
}

.tratamento-card:hover .card-icon {
    background-color: #73816A;
}

.tratamento-card:hover .card-icon img {
    filter: brightness(0) invert(1);
}

.tratamento-card:hover .card-link img {
    transform: translateX(5px);
}

.tratamentos .section-header {
    max-width: none;
}

.tratamento-card .card-link {
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    background-color: transparent;
}

.tratamento-card .card-link:hover {
    background-color: #f0ece9;
}

.detalhe-tratamento-container {
    padding: 5rem 0;
    background-color: #fff;
}

.detalhe-tratamento-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
}

.detalhe-texto {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 620px;
}

.detalhe-titulo {
    flex: 1;
}

.detalhe-texto .detalhe-titulo {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.detalhe-texto .detalhe-descricao p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.detalhe-texto .detalhe-titulo-itens {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.detalhe-texto .detalhe-lista-itens {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.detalhe-texto .detalhe-lista-itens li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 0.95rem;
    flex-wrap: nowrap;
}

.detalhe-texto .detalhe-lista-itens li i {
    color: var(--green-medium);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.detalhe-texto .detalhe-lista-itens li span {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    min-width: 0;
}

.detalhe-texto .btn-detalhe {
    margin-top: 2.5rem;
}

.detalhe-imagem .img-principal-tratamento {
    border-radius: 16px;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.detalhe-descricao p,
.detalhe-lista-itens li span {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* VIDEOS */

.videos {
    padding: 5rem 0;
    background-color: #fff;
}

.videos .section-header h2 {
    font-family: 'Playfair Display', serif;
    color: #41574D;
}

.video-card {
    background: #fff;
    border: 1px solid #E5E2DD;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease-out;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.video-thumbnail .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.video-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail .duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 6px;
}

.video-thumbnail .duration i {
    margin-right: 5px;
}

.video-content {
    padding: 1.5rem;
    position: relative;
    padding-bottom: 3.5rem !important;
}

.video-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #41574D;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-content p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #777;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-ver-mais-video {
    background: none;
    border: none;
    color: var(--secondary-color, #73816A);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem 0;
    font-family: inherit;
    transition: color 0.3s ease;
    position: absolute;
    bottom: 1.25rem;
    left: 1.5rem;
}

.btn-ver-mais-video:hover {
    color: var(--primary-dark, #41574D);
    text-decoration: underline;
}

.video-content.is-expanded h3,
.video-content.is-expanded p {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    z-index: 10000;
    animation: slideUp 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: rotate(90deg);
}

.video-modal-title {
    padding: 20px 25px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    border-bottom: 1px solid #eee;
}

.video-modal-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

.video-modal-player iframe,
.video-modal-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* DEPOIMENTOS  */

.depoimentos {
    padding: 6rem 0;
    background-color: #E5E2DD;
}

.depoimentos .section-header {
    max-width: none;
}

.depoimentos .section-header h2 {
    font-family: 'Playfair Display', serif;
    color: #41574D;
}

.depoimentos-slider .swiper-slide {
    height: auto !important;
}

.depoimento-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.quote-icon {
    font-size: 2.5rem;
    color: #E07A5F;
    margin-bottom: 1.5rem;
    display: block;
}

.rating {
    margin-bottom: 1.5rem;
    color: #f39c12;
    font-size: 1.1rem;
}

.rating i {
    margin-right: 2px;
}

.depoimento-texto {
    flex: 1;
    margin-bottom: 2rem;
}

.depoimento-card p {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.depoimento-texto .texto-curto {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.depoimento-texto .texto-completo {
    margin-top: 0;
}

.btn-ver-mais {
    background: none;
    border: none;
    color: #73816A;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
    font-family: inherit;
}

.btn-ver-mais:hover {
    color: #41574D;
    text-decoration: underline;
}

.author {
    margin-top: auto;
}

.author strong {
    display: block;
    font-weight: 600;
    color: #41574D;
    margin-bottom: 0.25rem;
}

.author span {
    font-size: 0.9rem;
    color: #777;
}

.swiper-pagination-bullet-active {
    background-color: #73816A !important;
}

.swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 3rem !important;
}

/* INSTAGRAM  */

.instagram {
    padding: 5rem 0;
    background-color: #fff;
}

.instagram .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instagram .section-header {
    max-width: none;
    margin-bottom: 1.5rem;
}

.instagram .section-header h2 {
    margin-bottom: 1rem;
}

.instagram-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #41574D;
    margin-bottom: 1rem;
    justify-content: center;
}

.instagram-title i {
    font-size: 1.2rem;
    justify-content: center;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background: linear-gradient(to right, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.btn-instagram i {
    font-size: 1.2rem;
}

.btn-instagram:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.instagram .btn-instagram+div.fade-in {
    margin-top: 2rem !important;
}

/* CTA BANNER (CONSULTÓRIO) */

.cta-banner {
    padding: 5rem 0;
    background-color: #eae8e5;
}

.cta-banner .grid-2 {
    align-items: center;
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
}

.cta-image {
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    height: 500px;
}

.clinic-slider {
    width: 100%;
    height: 100%;
}

.clinic-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-text {
    text-align: center;
}

.cta-text h2 {
    color: #41574D;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-text p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* CONTATO */

.contato {
    padding: 5rem 0 7rem 0;
    background-color: #fff;
}

.contato .section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem auto;
}

.contato .section-header h2 {
    font-size: 2rem;
    font-weight: 600;
}

.contato .section-header p {
    margin-bottom: 0;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: flex-start;
}

.info-bloco {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background-color: #E5E2DD;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon img {
    width: 26px;
    height: 26px;
}

.info-texto h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #41574D;
    margin-bottom: 0.5rem;
}

.info-texto p,
.info-texto a {
    font-size: 0.95rem;
    color: #555;
    text-decoration: none;
    display: block;
    line-height: 1.7;
    margin-bottom: 0;
}

.info-texto a:hover {
    color: #000;
}

.contato-form-wrapper {
    background-color: #e0ddda;
    padding: 2.5rem;
    border-radius: 16px;
}

.contato-form-wrapper h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #41574D;
    margin-bottom: 1.5rem;
}

.contato-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
    background-color: #fff;
    border: 1px solid #E5E2DD;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: #73816A;
}

.contato-form .btn-green {
    align-self: center;
}

.wpcf7-form p,
.wpcf7-form span.wpcf7-form-control-wrap {
    margin: 0;
    padding: 0;
    display: contents;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wpcf7-form .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #333;
    background-color: #fff;
    border: 1px solid #E5E2DD;
    border-radius: 6px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #73816A;
}

.wpcf7-form .btn-green {
    align-self: center !important;
    margin-top: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.wpcf7-form .btn-green::after {
    font-family: "Font Awesome 6 Free";
    content: "\f061";
    font-weight: 900;
}

/* FOOTER  */

.footer {
    background-color: #41574D;
    color: #E5E2DD;
    padding-top: 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-logo img {
    height: 100px;
    margin-bottom: 1.5rem;
}

.footer-col p {
    font-size: 1rem;
    color: #E5E2DD;
    margin-bottom: revert-layer;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    background-color: #FFFFFF1A;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease-out;
}

.social-icons a:hover {
    background-color: #E5E2DD;
    color: #41574D;
    border-color: #E5E2DD;
}

.footer h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.20rem;
}

.footer-nav a {
    color: #E5E2DD;
    font-size: 1.2rem;
    transition: color 0.3s ease-out;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-bottom p {
    color: #ada5a5;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #E5E2DD;
}

.contact-list li i {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 4px;
}

.contact-list a {
    color: #E5E2DD;
    transition: color 0.3s ease-out;
}

.contact-list a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff;
    padding: 2rem 0;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #E5E2DD;
}

.signo-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.signo-logo img {
    height: 25px;
    width: auto;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.check {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background-color: #E5E2DD;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MEDIA QUERIES */

@media (max-width: 1024px) {
    .container {
        max-width: 90%;
        padding: 0 1.5rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-grid,
    .sobre-grid {
        grid-template-columns: 1fr;
    }

    .sobre-grid .sobre-text {
        order: 1;
    }

    .sobre-grid .sobre-image {
        order: 2;
    }

    .sobre-grid {
        gap: 6rem !important;
    }

    section.sobre .sobre-grid {
        gap: 2rem;
    }

    .tratamentos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .cta-text {
        text-align: center;
    }

    .cta-text .btn-primary {
        justify-content: center;

    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner .grid-2 {
        grid-template-columns: 1fr;
    }

    .detalhe-texto .detalhe-titulo {
        font-size: 2rem;
    }

    .detalhe-imagem {
        order: -1;
    }

    .video-modal-content {
        width: 95%;
        max-width: none;
        margin: 20px;
    }

    .video-modal-title {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .video-modal-close {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .footer-logo {
        width: fit-content;
    }

    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .cta-banner .btn-primary {
        width: 100%;
    }

    h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .detalhe-tratamento-wrapper {
        flex-direction: column;
    }

    .sobre-container {
        flex-direction: column;
        padding: 0 3rem;
    }

    .info-boxes {
        gap: 0;
    }

    .detalhe-texto {
        align-items: center;
    }

    .detalhe-texto .detalhe-descricao p,h1,h3 {
        text-align: center;
    }

    .sobre-text h2 {
        text-align: center;
    }

    .sobre-text p {
        text-align: justify;
    }

    .header .navbar,
    .header .header-right .btn-primary {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 2rem 0 3rem 0;
    }

    .hero-text {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .tratamentos-grid {
        grid-template-columns: 1fr;
    }

    .sobre,
    .tratamentos,
    .videos,
    .depoimentos,
    .cta-banner,
    .contato {
        padding: 3rem 0;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .contato-form .btn-green {
        align-self: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-list {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;

        .footer-logo {
            display: flex;
            width: fit-content;
        }

        .contact-list {
            text-align: left;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-inline: 15px;
        }

        .address {
           text-align: center;
           align-items: flex-start;
        }
    }

}