/* ========================================= */
/* RESET */
/* ========================================= */
:root {
    --primary-color: #0D4A73;
    --secondary-color: #126C7A;
    --accent-color: #25D366;
    --dark-color: #1A1A1A;
    --text-color: #555555;
    --light-color: #F8F9FA;
    --white-color: #FFFFFF;
    --font-primary: 'Inter', sans-serif;
    --section-spacing: 100px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --transition-default: all 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--white-color);
    line-height: 1.7;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    transition: var(--transition-default);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.2;
}
/* ========================================= */
/* UTILITÁRIOS */
/* ========================================= */
.section-spacing {
    padding: var(--section-spacing) 0;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--accent-color);
    color: #FFFFFF;
    padding: 16px 34px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    transition: var(--transition-default);
}
.btn-whatsapp:hover {
    background-color: #1EBE5D;
    color: #FFFFFF;
    transform: translateY(-3px);
}
/* ========================================= */
/* HERO */
/* ========================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 50px 0;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #0D4A73 0%,
        #126C7A 55%,
        #1B8A7A 100%
    );
}
.hero-image-wrapper {
    width: 320px;
    height: 320px;
    margin: 0 auto 50px;
    overflow: hidden;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-badge {
    display: inline-block;
    padding: 10px 22px;
    margin-bottom: 30px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}
.hero-title {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.hero-subtitle {
    max-width: 900px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 34px;
    font-weight: 600;
    line-height: 1.4;
	text-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.hero-description {
    max-width: 1000px;
    margin: 0 auto 45px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 24px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    background-color: transparent;
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 600;
    transition: var(--transition-default);
}
.btn-outline-custom:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}
/* ========================================= */
/* RESPONSIVO */
/* ========================================= */
@media (max-width: 991px) {
    :root {
        --section-spacing: 80px;
    }
    .hero-section {
        min-height: auto;
        padding: 50px 0;
    }
    .hero-image-wrapper {
        width: 260px;
        height: 260px;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-subtitle {
        font-size: 28px;
    }
    .hero-description {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .hero-section {
        padding: 30px 0;
    }
    .hero-image-wrapper {
        width: 220px;
        height: 220px;
    }
    .hero-title {
        font-size: 40px;
    }
    .hero-subtitle {
        font-size: 22px;
    }
    .hero-description {
        font-size: 18px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn-whatsapp,
    .btn-outline-custom {
        width: 100%;
    }
}
@media (max-width: 575px) {
    .hero-title {
        font-size: 34px;
    }
    .hero-subtitle {
        font-size: 20px;
    }
    .hero-description {
        font-size: 17px;
    }
}
/* ABOUT ME */
.about-content {
    text-align: center;
}
.about-badge {
    display: inline-block;
    padding: 10px 22px;
    margin-bottom: 25px;
    border-radius: 50px;
    background-color: rgba(13, 74, 115, 0.08);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.about-title {
    max-width: 900px;
    margin: 0 auto 35px;
    color: var(--dark-color);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}
.about-content p {
    max-width: 900px;
    margin: 0 auto 25px;
    color: var(--text-color);
    font-size: 22px;
    line-height: 1.8;
}
/* ========================================= */
/* RESPONSIVO */
/* ========================================= */
@media (max-width: 991px) {
    .about-title {
        font-size: 40px;
    }
    .about-content p {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .about-title {
        font-size: 32px;
    }
    .about-content p {
        font-size: 18px;
        line-height: 1.7;
    }
}
@media (max-width: 575px) {
    .about-title {
        font-size: 28px;
    }
}
/* ========================================= */
/* TREATMENTS SECTION */
/* ========================================= */
.section-badge {
    display: inline-block;
    padding: 10px 22px;
    margin-bottom: 25px;
    border-radius: 50px;
    background-color: rgba(13, 74, 115, 0.08);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.section-title {
    margin-bottom: 25px;
    color: var(--dark-color);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
}
.section-description {
    color: var(--text-color);
    font-size: 22px;
    line-height: 1.8;
}
.treatment-card {
    height: 100%;
    padding: 40px 35px;
    border-radius: 24px;
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition-default);
	
	text-align: center;
}
.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.treatment-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 20px;
    background-color: rgba(13, 74, 115, 0.08);
    color: var(--primary-color);
    font-size: 28px;
}
.treatment-card h3 {
    margin-bottom: 18px;
    color: var(--dark-color);
    font-size: 26px;
    font-weight: 700;
}
.treatment-card p {
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.8;
}
/* ========================================= */
/* RESPONSIVO */
/* ========================================= */
@media (max-width: 991px) {
    .section-title {
        font-size: 40px;
    }
    .section-description {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .section-title {
        font-size: 32px;
    }
    .section-description {
        font-size: 18px;
        line-height: 1.7;
    }
    .treatment-card {
        padding: 35px 28px;
    }
    .treatment-card h3 {
        font-size: 24px;
    }
    .treatment-card p {
        font-size: 17px;
    }
}
@media (max-width: 575px) {
    .section-title {
        font-size: 28px;
    }
}
/* ========================================= */
/* PAIN POINTS SECTION */
/* ========================================= */
.pain-card {
    height: 100%;
    padding: 35px 30px;
    border-radius: 24px;
    background-color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-default);
	
	text-align: center;
}
.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}
.pain-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border-radius: 18px;
    background-color: rgba(13, 74, 115, 0.08);
    color: var(--primary-color);
    font-size: 24px;
}
.pain-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-size: 24px;
    font-weight: 700;
}
.pain-card p {
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 17px;
    line-height: 1.8;
}
/* ========================================= */
/* RESPONSIVO */
/* ========================================= */
@media (max-width: 767px) {
    .pain-card {
        padding: 30px 25px;
    }
    .pain-card h3 {
        font-size: 22px;
    }
    .pain-card p {
        font-size: 16px;
        line-height: 1.7;
    }
}
/* ========================================= */
/* CTA SECTION */
/* ========================================= */
.cta-section {
    background-color: #FFFFFF;
}
.cta-wrapper {
    padding: 70px 50px;
    border-radius: 30px;
    background: linear-gradient(
        135deg,
        #0D4A73 0%,
        #126C7A 55%,
        #1B8A7A 100%
    );
}
.cta-title {
    max-width: 800px;
    margin: 0 auto 25px;
    color: #FFFFFF;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}
.cta-description {
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 22px;
    line-height: 1.8;
}
/* ========================================= */
/* RESPONSIVO */
/* ========================================= */
@media (max-width: 991px) {
    .cta-title {
        font-size: 42px;
    }
    .cta-description {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .cta-wrapper {
        padding: 50px 30px;
    }
    .cta-title {
        font-size: 34px;
    }
    .cta-description {
        font-size: 18px;
        line-height: 1.7;
    }
}
@media (max-width: 575px) {
    .cta-wrapper {
        padding: 40px 25px;
    }
    .cta-title {
        font-size: 28px;
    }
}
/* ========================================= */
/* MAP SECTION */
/* ========================================= */
.map-section iframe {
    width: 100%;
    height: 500px;
    display: block;
    border: 0;
}
/* ========================================= */
/* FOOTER SECTION */
/* ========================================= */
.footer-section {
    padding: 70px 0 40px;
    background-color: var(--primary-color);
}
.footer-logo {
    max-width: 220px;
    margin: 0 auto 35px;
}
.footer-info {
    margin-bottom: 35px;
}
.footer-info p {
    margin-bottom: 15px;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
}
.footer-info i {
    margin-right: 10px;
}
.footer-copyright {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
}
/* ========================================= */
/* RESPONSIVO */
/* ========================================= */
@media (max-width: 767px) {
    .footer-section {
        padding: 60px 0 35px;
    }
    .footer-info p {
        font-size: 17px;
    }
}
/* ========================================= */
/* FLOATING WHATSAPP BUTTON */
/* ========================================= */
.floating-whatsapp-button {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    border-radius: 50%;
    background-color: #25D366;
    color: #FFFFFF;
    font-size: 30px;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
    transition: var(--transition-default);
}
.floating-whatsapp-button span {
    display: none;
}
.floating-whatsapp-button:hover {
    background-color: #1EBE5D;
    color: #FFFFFF;
    transform: translateY(-4px) scale(1.05);
}
/* ========================================= */
/* RESPONSIVO */
/* ========================================= */
@media (max-width: 767px) {
    .floating-whatsapp-button {
        width: calc(100% - 30px);
        height: 58px;
        right: 15px;
        bottom: 15px;
        border-radius: 16px;
        justify-content: center;
        gap: 10px;
        font-size: 18px;
        font-weight: 700;
    }
    .floating-whatsapp-button span {
        display: inline-block;
    }
    .floating-whatsapp-button:hover {
        transform: translateY(-2px);
    }
}
/* ========================================= */
/* GALLERY SECTION */
/* ========================================= */
.gallery-item {
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
/* ========================================= */
/* GALLERY MODAL */
/* ========================================= */
.gallery-modal-content {
    background: transparent;
    border: 0;
}
.gallery-modal-content img {
    border-radius: 20px;
}
/* ========================================= */
/* RESPONSIVO */
/* ========================================= */
@media (max-width: 767px) {
    .gallery-item img {
        height: 250px;
    }
}