/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

:root {
    --cyan: #02aadc;
    --cyan-dark: #0299c5;
    --dark-bg: #1a1a2e;
    --dark-section: #2d3748;
    --white: #ffffff;
    --light-gray: #f7f8fa;
    --text-dark: #1a1a2e;
    --text-body: #555;
    --max-width: 1200px;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    height: 87px;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.navbar-logo img { height: auto; width: 156px; }
.navbar-menu { display: flex; align-items: center; gap: 28px; }
.navbar-menu a { font-size: 16px; font-weight: 600; color: var(--text-dark); transition: color 0.3s; }
.navbar-menu a:hover { color: var(--cyan); }
.btn-agendar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;

    background: linear-gradient(135deg, #ffffff 0%, #00b7d8 100%);
    color: var(--dark-section); /* azul escuro */
    
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    cursor: pointer;

    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    transition: .3s ease;
}

.btn-agendar:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 22px rgba(0, 0, 0, 0.25);
}
.btn-agendar i { font-size: 11px; }
.hamburger {
    display: none; background: var(--cyan); border: none; color: #fff;
    width: 42px; height: 42px; border-radius: 8px; font-size: 20px;
    cursor: pointer; align-items: center; justify-content: center;
}

/* ========== HERO ========== */
.hero {
    margin-top: 70px;
    background: linear-gradient(135deg, #07b8e6 0%, #02aadc 30%, #0fbce8 60%, #07b8e6 100%);
    padding: 80px 20px 90px; text-align: center; position: relative; overflow: hidden;
}
.hero--has-bg { background-size: cover; background-position: center; height: 600px; display: flex; align-items: center; }
.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
       background: #000000cc; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 750px; margin: 0 auto; }
.hero h1 { font-size: 34px; font-weight: 800; color: var(--white); line-height: 1.35; margin-bottom: 18px; }
.hero p { font-size: 16px; color: rgba(255,255,255,0.9); font-weight: 400; margin-bottom: 30px; line-height: 1.7; }

/* ========== SECTION LABELS ========== */
.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.section-label::before { content: ''; flex: 1; height: 1px; background: var(--cyan); }
.section-label span { font-size: 11px; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: 0.15em; white-space: nowrap; }
.section-label.label-left::before { display: none; }
.section-label.label-left::after { content: ''; flex: 1; height: 1px; background: var(--cyan); }
.section-label.label-center::before, .section-label.label-center::after { content: ''; flex: 1; height: 1px; background: var(--cyan); }

/* ========== TRATAMENTO ========== */
.section-tratamento { background: var(--white); padding: 60px 20px; }
.section-tratamento h2 { font-size: 30px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; line-height: 1.3; }
.section-tratamento p { font-size: 16px; color: var(--text-body); line-height: 1.75; font-weight: 400; margin-bottom: 12px; }
.section-tratamento h3 { font-size: 25px; font-weight: 800; color: var(--text-dark); margin-top: 30px; margin-bottom: 14px; }

/* ========== SOBRE ========== */
.section-sobre { background: var(--light-gray); padding: 60px 20px; }
.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.section-sobre h2 { font-size: 30px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.section-sobre p { font-size: 16px; color: var(--text-body); line-height: 1.75; margin-bottom: 20px; }
.section-img { width: 100%; border-radius: 12px; display: block; }
.placeholder-img {
    width: 100%; aspect-ratio: 16/9; background: #e0e0e0; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: #999; font-weight: 300;
}

/* ========== CLÍNICA ========== */
.section-clinica {
    background: linear-gradient(135deg, #07b8e6 0%, #02aadc 50%, #0fbce8 100%);
    padding: 60px 20px;
}
.section-clinica .section-img { border-radius: 16px; }
.section-clinica .placeholder-img {  border: 2px solid rgba(255,255,255,0.2); border-radius: 16px; }
.section-clinica h2 { font-size: 30px; font-weight: 800; color: var(--white); margin-bottom: 20px; }

/* Accordion */
.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion-item { background: var(--white); border-radius: 50px; overflow: hidden; transition: border-radius 0.3s; }
.accordion-item.expanded { border-radius: 16px; }
.accordion-btn {
    width: 100%; padding: 14px 24px; background: none; border: none;
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 600;
    color: var(--text-dark); cursor: pointer; text-align: left;
}
.accordion-btn i { font-size: 12px; color: var(--cyan); transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.accordion-item.expanded .accordion-btn i { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-item.expanded .accordion-body { max-height: 200px; }
.accordion-body-inner { padding: 0 24px 16px; font-size: 15px; color: var(--text-body); line-height: 1.7; }

/* ========== FUNCIONAMENTO ========== */
.section-funcionamento { background: var(--white); padding: 60px 20px; text-align: center; }
.section-funcionamento h2 { font-size: 30px; font-weight: 800; color: var(--text-dark); margin-bottom: 14px; }
.section-funcionamento > .container > p { font-size: 14px; color: var(--text-body); line-height: 1.75; max-width: 750px; margin: 0 auto 40px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;  margin-top: 20px;   }
.func-card {
    background: linear-gradient(135deg, #07b8e6 0%, #02aadc 100%);
    border-radius: 16px; padding: 28px 22px; text-align: center; color: var(--white);
}
.func-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.func-card p { font-size: 14px; font-weight: 400; line-height: 1.65; opacity: 0.92; }

/* ========== BENEFÍCIOS ========== */
.section-beneficios { background: var(--white); padding: 60px 20px; text-align: center; }
.section-beneficios h2 { font-size: 30px; font-weight: 800; color: var(--text-dark); margin-bottom: 40px; }
.beneficios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.beneficios-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
.beneficio-card {
    background: var(--white); border: 1px solid #e8edf2; border-radius: 16px;
    padding: 30px 20px; text-align: center; transition: box-shadow 0.3s, border-color 0.3s;
}
.beneficio-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); border-color: rgba(2,170,220,0.3); }
.beneficio-card .icon-wrap {
    width: 56px; height: 56px; margin: 0 auto 16px;
    background: linear-gradient(135deg, #e6f8fd, #d0f0fa);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.beneficio-card .icon-wrap svg { width: 26px; height: 26px; fill: var(--cyan); }
.beneficio-card h3 { font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.beneficio-card p { font-size: 14px; color: var(--text-body); line-height: 1.65; }

/* ========== INDICAÇÕES ========== */
.section-indicacoes { background: #2d3748; padding: 60px 20px; color: var(--white); }
.section-indicacoes .section-label span { color: var(--cyan); }
.section-indicacoes .section-label::after { background: rgba(255,255,255,0.2); }
.section-indicacoes h2 { font-size: 30px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.section-indicacoes p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.7; }
.accordion-dark .accordion-item {
    background: rgba(255,255,255,0.07); border-radius: 50px; border: 1px solid rgba(255,255,255,0.1);
}
.accordion-dark .accordion-item.expanded { border-radius: 16px; }
.accordion-dark .accordion-btn { color: var(--white); font-size: 16px; font-weight: 600; }
.accordion-dark .accordion-btn i { color: var(--cyan); }
.accordion-dark .accordion-body-inner { color: rgba(255,255,255,0.7); }

/* ========== CTA ========== */
.section-cta { padding: 80px 20px; text-align: center; position: relative; overflow: hidden; background: #eee; }
.section-cta--has-bg { background-size: cover; background-position: center; }
.section-cta .cta-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: #000000bf; pointer-events: none;
}
.section-cta .cta-inner { position: relative; z-index: 2; }
.section-cta h2 { font-size: 30px; font-weight: 800; color: white; margin-bottom: 16px; max-width: 550px; margin-left: auto; margin-right: auto; line-height: 1.3; }
.section-cta p { font-size: 16px; color: white; max-width: 600px; margin: 0 auto 30px; line-height: 1.7; }

/* ========== FOOTER ========== */
.footer { background: white; padding: 50px 20px 0; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 40px; max-width: var(--max-width); margin: 0 auto; }
.footer-logo img { width: 240px; margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--dark-bg) }
.footer-contact-item i { color: var(--cyan); font-size: 14px; width: 18px; text-align: center; }
.footer h4 { font-size: 14px; font-weight: 700; color:var(--dark-bg); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--dark-bg); transition: color 0.3s; }
.footer-links a:hover { color: var(--cyan); }
.social-icons { display: flex; gap: 8px; }
.social-icon {
    width: 36px; height: 36px; border-radius: 50%; background: var(--cyan);
    display: flex; align-items: center; justify-content: center; color: #fff;
    font-size: 14px; transition: all 0.3s;
}
.social-icon:hover { background: var(--cyan-dark); transform: translateY(-2px); }
.footer-bottom {
    text-align: center; padding: 24px 0; margin-top: 40px;
    border-top: 1px solid var(--cyan-dark); font-size: 12px;
    color: var(--dark-bg); max-width: var(--max-width); margin-left: auto; margin-right: auto;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed; bottom: 24px; left: 24px; width: 44px; height: 44px;
    border-radius: 50%; background: var(--cyan); color: #fff; border: none;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 18px; z-index: 900; opacity: 0; transform: translateY(20px);
    transition: all 0.3s; box-shadow: 0 4px 15px rgba(2,170,220,0.4);
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--cyan-dark); }

/* ========== MOBILE MENU ========== */
.mobile-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 1001; display: none; }
.mobile-overlay.active { display: block; }
.mobile-drawer {
    position: fixed; top: 0; right: -300px; bottom: 0; width: 280px;
    background: #fff; z-index: 1002; transition: right 0.3s; padding: 20px;
    display: flex; flex-direction: column;
}
.mobile-drawer.active { right: 0; }
.mobile-drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mobile-drawer-close {
    background: var(--cyan); color: #fff; border: none; width: 32px; height: 32px;
    border-radius: 50%; font-size: 16px; cursor: pointer; display: flex;
    align-items: center; justify-content: center;
}
.mobile-drawer a { display: block; padding: 12px 0; font-size: 15px; font-weight: 600; color: var(--text-dark); border-bottom: 1px solid #f0f0f0; }

/* ========== ANIMATIONS ========== */
.fade-up { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) { .navbar-menu { display: none; } .hamburger { display: flex; margin-right: 20px; } }
@media (max-width: 768px) {
    .grid-2col { grid-template-columns: 1fr; }
    .cards-3 { grid-template-columns: 1fr; margin-top: 20px; }
    .beneficios-grid { grid-template-columns: 1fr; }
    .beneficios-grid-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 22px; }
    h2{
        font-size: 20px !important;
    }
    .container{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .navbar-logo img{
        width: 140px;
    }
    .footer-contact-item, .footer-links, .social-wrapper, .footer-logo{
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .footer h4{
        text-align: center;
    }
}

.whatsapp{
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 100;
    width: 70px;
    transition: 0.5s all;
}

.whatsapp:hover{
    transform: translateY(-10px);
}

/* ========== BLOG HEADER ========== */
.blog-header {
    margin-top: 70px;
    background: linear-gradient(135deg, #07b8e6 0%, #02aadc 30%, #0fbce8 60%, #07b8e6 100%);
    padding: 50px 20px 50px;
    text-align: center;
}
.blog-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
}
.blog-header .single-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    transition: color 0.3s;
}
.blog-header .single-back:hover { color: #fff; }
.blog-header .single-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 14px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
}
.blog-header .single-meta i { margin-right: 5px; }

/* ========== BLOG LISTING ========== */
.blog-listing {
    padding: 50px 20px 60px;
    background: var(--light-gray);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8edf2;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: rgba(2,170,220,0.25);
}
.blog-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #eee;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: #ccc;
}
.blog-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}
.blog-card-meta i { margin-right: 4px; color: var(--cyan); }
.blog-card-body h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 8px;
}
.blog-card-body p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 14px;
}
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan);
    transition: gap 0.3s;
}
.blog-card:hover .blog-card-link { gap: 10px; }
.blog-card-link i { font-size: 11px; }

/* Blog Empty */
.blog-empty {
    text-align: center;
    padding: 60px 20px;
}
.blog-empty i { font-size: 48px; color: #ccc; margin-bottom: 20px; }
.blog-empty h2 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.blog-empty p { font-size: 14px; color: var(--text-body); }

/* Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}
.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid #e8edf2;
    transition: all 0.3s;
}
.blog-pagination a:hover {
    background: var(--cyan);
    color: #fff;
    border-color: var(--cyan);
}
.blog-pagination span.current {
    background: var(--cyan);
    color: #fff;
    border-color: var(--cyan);
}

/* ========== SINGLE POST ========== */
.single-content {
    padding: 40px 20px 60px;
    background: var(--white);
}
.single-content .container {
    max-width: 800px;
}
.single-thumbnail {
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
}
.single-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}
.single-body {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.85;
}
.single-body h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 32px 0 12px;
}
.single-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 28px 0 10px;
}
.single-body p { margin-bottom: 16px; }
.single-body ul, .single-body ol {
    margin: 0 0 16px 24px;
    list-style: disc;
}
.single-body ol { list-style: decimal; }
.single-body li { margin-bottom: 6px; }
.single-body a { color: var(--cyan); font-weight: 600; }
.single-body a:hover { text-decoration: underline; }
.single-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}
.single-body blockquote {
    border-left: 4px solid var(--cyan);
    padding: 16px 20px;
    margin: 20px 0;
    background: var(--light-gray);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #666;
}

/* Single Navigation */
.single-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e8edf2;
}
.single-nav-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #e8edf2;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.single-nav-item:hover {
    border-color: rgba(2,170,220,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.single-nav-next { text-align: right; }
.single-nav-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.single-nav-label i { font-size: 10px; }
.single-nav-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ========== BLOG RESPONSIVE ========== */
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
    .single-nav { grid-template-columns: 1fr; }
    .single-nav-next { text-align: left; }
    .blog-header h1 { font-size: 26px; }
}

.social-wrapper {
    display: flex;
    align-items: center;
    gap: 12px; /* espaçamento entre ícones */
}

.social-icon {
    font-size: 18px;
    color: white; /* ajuste como quiser */
    transition: .3s ease;
}

.social-icon:hover {
    color: #00b7d8; /* highlight no hover */
}