/* =============================================
   Hipnose Paraná – CSS Principal
   Compatível com Bootstrap 5.3
   ============================================= */

/* === VARIÁVEIS === */
:root {
    --primary:       #1b5e37;
    --primary-dark:  #0d3a21;
    --primary-light: #2d7a50;
    --secondary:     #40916c;
    --accent:        #74c69d;
    --bg-light:      #f0f7f3;
    --bg-section:    #f8fdfb;
    --text-dark:     #1a2821;
    --text-body:     #4a5c52;
    --text-muted:    #718096;
    --white:         #ffffff;
    --border:        #e2ede8;
    --shadow-sm:     0 2px 8px rgba(27, 94, 55, 0.07);
    --shadow-md:     0 6px 24px rgba(27, 94, 55, 0.12);
    --shadow-lg:     0 12px 48px rgba(27, 94, 55, 0.16);
    --radius:        12px;
    --radius-lg:     20px;
    --transition:    all 0.3s ease;
}

/* === BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 106px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-body);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* === TIPOGRAFIA === */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
}

.section-badge {
    display: inline-block;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.6rem;
}
.section-badge::before {
    content: '— ';
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* === BOTÕES === */
.btn-primary-custom,
.btn-outline-custom,
.btn-white-custom {
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-white-custom {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-white-custom:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* === NAVBAR === */
#navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 1.1rem 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: padding 0.35s ease, box-shadow 0.35s ease;
}

#navbar.scrolled {
    padding: 0.55rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    height: 80px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: height 0.35s ease, max-width 0.35s ease;
}

#navbar.scrolled .navbar-brand img {
    height: 52px;
    max-width: 200px;
}

#navbar .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
}
#navbar .nav-link:hover,
#navbar .nav-link.active {
    color: var(--primary);
    background: var(--bg-light);
}

.navbar-toggler {
    border: none;
    padding: 0.4rem;
}
.navbar-toggler:focus {
    box-shadow: none;
}

/* === HERO === */
.hero-section {
    background: linear-gradient(140deg, var(--bg-light) 0%, #e5f4ec 60%, #d4ede2 100%);
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 4rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(64, 145, 108, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(27, 94, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(27, 94, 55, 0.1);
    color: var(--primary);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.4rem;
    line-height: 1.15;
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 2.2rem;
    max-width: 520px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--border);
}

.hero-stat .number {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Imagem Hero */
.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 490px;
    min-height: 440px;
    position: relative;
}

.hero-img-placeholder {
    background: linear-gradient(145deg, var(--primary-light), var(--secondary));
    width: 100%;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 1rem;
}

.hero-img-placeholder i {
    font-size: 7rem;
    opacity: 0.55;
}

/* Cartões flutuantes */
.hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 0.85rem 1.1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-float-card.card-1 {
    bottom: 2.5rem;
    left: -2.5rem;
    animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-2 {
    top: 2.5rem;
    right: -2.5rem;
    animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

.float-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.float-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.float-text small {
    font-size: 0.73rem;
    color: var(--text-muted);
}

/* === FEATURES === */
.features-section {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(27, 94, 55, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-card:hover::after {
    width: 100%;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.feature-card h5 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

/* === SOBRE === */
.about-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

.about-image-wrap {
    position: relative;
}

.about-img {
    border-radius: var(--radius-lg) !important;
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 1.2rem 1.8rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.about-experience-badge .years {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .desc {
    font-size: 0.78rem;
    opacity: 0.88;
    display: block;
    margin-top: 0.25rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-feature-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.about-feature-item:hover .about-feature-icon {
    background: var(--primary);
    color: var(--white);
}

.about-feature-item h6 {
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.about-feature-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* === SERVIÇOS === */
.services-section {
    padding: 5rem 0;
    background: var(--white);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
    cursor: pointer;
}

.service-card:hover {
    border-color: rgba(27, 94, 55, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-card.featured {
    background: var(--primary);
    border-color: var(--primary);
}

.service-card.featured h5 {
    color: var(--white);
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.82);
}

.service-card.featured .service-link {
    color: rgba(255, 255, 255, 0.9);
}

.service-icon {
    width: 62px;
    height: 62px;
    background: var(--bg-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.service-card:not(.featured):hover .service-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card h5 {
    font-size: 1rem;
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 0.8rem;
}

/* === ÁREAS === */
.areas-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

.area-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.area-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.area-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.2rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.area-card:hover .area-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.area-card h6 {
    font-size: 0.88rem;
    color: var(--text-dark);
    margin: 0;
    transition: var(--transition);
}

.area-card:hover h6 {
    color: var(--white);
}

/* === DEPOIMENTOS === */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    font-size: 6rem;
    color: var(--bg-light);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 700;
}

.author-info span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* === AGENDAMENTO === */
.appointment-section {
    padding: 5rem 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.appointment-section .section-title {
    color: var(--white);
}

.appointment-section .section-subtitle {
    color: rgba(255, 255, 255, 0.78);
}

.appointment-form .form-control,
.appointment-form .form-select {
    border: 2px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.appointment-form .form-control:focus,
.appointment-form .form-select:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.appointment-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.appointment-form .form-select option {
    color: var(--text-dark);
    background: var(--white);
}

.appointment-form label {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.appointment-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.appointment-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.appointment-info-item h6 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.appointment-info-item p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

/* === FOOTER === */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.78);
    padding: 4.5rem 0 2rem;
}

.footer-logo img {
    height: 56px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    margin-bottom: 1.2rem;
    filter: brightness(0) invert(1);
    opacity: 0.88;
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.62);
    max-width: 290px;
}

.footer h6 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.4rem;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a::before {
    content: '›';
    font-size: 1.1rem;
    color: var(--accent);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0.4rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.social-link[title="YouTube"]:hover {
    background: #ff0000;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 3rem;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

/* === WHATSAPP FLUTUANTE === */
.whatsapp-float {
    position: fixed;
    bottom: 5.5rem;
    right: 1.8rem;
    z-index: 999;
}

.whatsapp-float a {
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    animation: pulseWa 2.5s ease-in-out infinite;
}

.whatsapp-float a:hover {
    background: #20be5b;
    transform: scale(1.1);
    animation: none;
}

@keyframes pulseWa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50%       { box-shadow: 0 4px 38px rgba(37, 211, 102, 0.75); }
}

/* === SCROLL TOP === */
.scroll-top {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: var(--transition);
    z-index: 998;
    border: none;
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* === ANIMAÇÕES === */
.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* === RESPONSIVO === */
@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 62px;
        max-width: 210px;
    }

    html {
        scroll-padding-top: 88px;
    }

    .hero-section {
        min-height: auto;
        padding: 4rem 0 3rem;
    }

    .hero-image-wrap {
        margin-top: 3rem;
    }

    .hero-float-card.card-1 { left: 0; }
    .hero-float-card.card-2 { right: 0; }

    .about-experience-badge {
        right: 1rem;
    }

    #navMenu {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border);
    }

    #navMenu .nav-link {
        padding: 0.6rem 0.75rem;
    }

    #navMenu .ms-lg-2 {
        margin-top: 0.75rem;
    }

    #navMenu .btn-primary-custom {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-float-card {
        display: none;
    }

    .about-img {
        height: 300px;
        min-height: 300px !important;
    }

    .about-experience-badge {
        bottom: -1rem;
        right: 0.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }
}

/* === SESSÃO DE HIPNOTERAPIA === */
.sessao-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.sessao-card:hover {
    box-shadow: var(--shadow-md);
}

.sessao-text {
    color: var(--text-body);
    font-size: 0.97rem;
    line-height: 1.8;
    margin: 0;
}

.sessao-aside {
    background: var(--bg-light);
    border-left: 1px solid var(--border);
}

.sessao-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.3rem;
    font-size: 0.875rem;
}

.sessao-info-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.sessao-info-item strong {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.sessao-info-item span {
    color: var(--text-body);
}

/* === CITAÇÃO === */
.quote-section {
    background: var(--primary);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.quote-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}

.quote-inner blockquote {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-style: italic;
}

.quote-inner blockquote strong {
    font-weight: 700;
    color: var(--white);
    font-style: normal;
}

.quote-inner cite {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: normal;
    letter-spacing: 1px;
}

/* === BLOG === */
.blog-section {
    padding: 5rem 0;
    background: var(--bg-section);
}

/* ── YouTube ────────────────────────────────── */
.youtube-section {
    padding: 5rem 0;
    background: var(--white);
}

.youtube-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.youtube-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.youtube-iframe-wrap {
    border-radius: var(--radius);
    overflow: hidden;
}

.youtube-iframe-wrap iframe {
    border: none;
    width: 100%;
    height: 100%;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(27, 94, 55, 0.2);
}

.blog-card .blog-card-img-wrap {
    display: block;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card .blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 1.5rem 1.8rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card .blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color .2s;
}

.blog-card .blog-title a:hover {
    color: var(--primary);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-meta i {
    color: var(--secondary);
}

.blog-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color .2s;
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-resumo {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap .2s, color .2s;
    margin-top: auto;
}

.blog-link:hover {
    gap: 0.7rem;
    color: var(--primary-dark);
}

/* === SOBRE RICARDO === */
.sobre-section {
    padding: 5rem 0;
    background: var(--white);
}

.sobre-img-wrap {
    position: relative;
}

.sobre-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-lg);
}

.sobre-formacoes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.formacao-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary);
    border: 1px solid rgba(27, 94, 55, 0.2);
    border-radius: 50px;
    padding: 0.35rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* === RESPONSIVO NOVAS SEÇÕES === */
@media (max-width: 991.98px) {
    .sessao-aside {
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .sobre-img {
        height: 380px;
    }
}

@media (max-width: 767.98px) {
    .sobre-img {
        height: 300px;
    }

    .quote-section {
        padding: 3.5rem 0;
    }

    .blog-section,
    .sobre-section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-stat {
        min-width: calc(50% - 0.5rem);
    }

    .appointment-section {
        padding: 3rem 0;
    }

    .features-section {
        padding: 3rem 0;
    }
}

/* =============================================
   BLOG – Páginas públicas
   ============================================= */

/* Listagem */
.blog-page-section {
    padding: 4rem 0 5rem;
    background: var(--bg-section);
    min-height: 60vh;
}

.blog-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Busca */
.blog-search-form {
    max-width: 620px;
    margin: 0 auto 2.5rem;
}

.blog-search-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
    transition: border-color .2s, box-shadow .2s;
}

.blog-search-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 94, 55, .13);
}

.blog-search-prefix {
    background: var(--white);
    border: none;
    color: var(--secondary);
    font-size: 1rem;
    padding-left: 1.1rem;
    padding-right: .6rem;
}

.blog-search-input {
    border: none;
    outline: none;
    box-shadow: none !important;
    font-size: .95rem;
    color: var(--text-dark);
    background: var(--white);
}

.blog-search-input:focus {
    border-color: transparent;
    box-shadow: none;
}

.blog-search-clear {
    background: var(--white);
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: .45rem .65rem;
    transition: color .2s;
    text-decoration: none;
}

.blog-search-clear:hover {
    color: var(--primary);
    background: var(--white);
}

.blog-search-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: .55rem 1.4rem;
    font-size: .875rem;
    font-weight: 600;
    transition: background .2s;
    white-space: nowrap;
}

.blog-search-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.blog-search-result {
    text-align: center;
    margin-bottom: 2rem;
    font-size: .95rem;
    color: var(--text-body);
}

.blog-search-result a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Estado vazio */
.blog-empty-state {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-muted);
}

.blog-empty-state i {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
    opacity: .4;
}

.blog-card-pub {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blog-card-pub:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog-card-img-wrap {
    display: block;
    height: 200px;
    overflow: hidden;
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.blog-card-pub:hover .blog-card-img-wrap img {
    transform: scale(1.04);
}

.blog-card-img-placeholder {
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 3rem;
}

.blog-card-pub-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Paginação */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--text-dark);
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ── Post individual ───────────────────────── */

.post-page {
    padding: 3rem 0 5rem;
}

.post-breadcrumb {
    margin-bottom: 2rem;
}

.post-breadcrumb .breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}

.post-breadcrumb .breadcrumb-item.active {
    color: var(--text-muted);
    font-size: .875rem;
}

.post-header {
    margin-bottom: 2rem;
}

.post-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .83rem;
    color: var(--text-muted);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.post-cover {
    margin-bottom: 2rem;
}

.post-cover img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* Conteúdo Quill */
.post-content,
.ql-editor-output {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 2.5rem;
}

.post-content h2, .ql-editor-output h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 2rem 0 .75rem;
    color: var(--text-dark);
}

.post-content h3, .ql-editor-output h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 1.5rem 0 .5rem;
    color: var(--text-dark);
}

.post-content p, .ql-editor-output p {
    margin-bottom: 1.1rem;
}

.post-content ul, .post-content ol,
.ql-editor-output ul, .ql-editor-output ol {
    padding-left: 1.5rem;
    margin-bottom: 1.1rem;
}

.post-content blockquote, .ql-editor-output blockquote {
    border-left: 4px solid var(--primary);
    padding: .75rem 1rem;
    background: var(--bg-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-body);
}

.post-content a, .ql-editor-output a {
    color: var(--primary);
    text-decoration: underline;
}

/* Rodapé do post */
.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

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

.author-avatar-lg {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-light);
}

.author-avatar-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.post-author-box strong {
    display: block;
    font-size: .9rem;
    color: var(--text-dark);
}

.post-author-box p {
    margin: 0;
    font-size: .78rem;
    color: var(--text-muted);
}

.post-share {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .85rem;
    color: var(--text-muted);
}

.post-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.post-share a:hover {
    background: var(--primary);
    color: var(--white);
}

/* CTA final do post */
.post-cta {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.post-cta h3 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
}

.post-cta p {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

