/* ============================================================
   MISCIGENADAS — PROCEDIMENTOS PREMIUM DESKTOP REDESIGN (REFINE)
   ============================================================ */

:root {
    --primary-brown: #481E0B;
    --accent-terracotta: #C87D5C;
    --accent-red-brown: #B35639;
    --bg-light-peach: #FAF4F1;
    --bg-very-light-peach: #FAF8F7;
    --border-light-brown: #EAD9D2;
    --text-muted: #69615D;
    --text-light-grey: #9E8E87;
    --white: #FFFFFF;
}

/* ── Global Styles & Reset tweaks ── */
.italic-serif {
    font-family: 'Marcellus', serif;
    font-style: italic;
    font-weight: normal;
    text-transform: none;
    color: var(--accent-terracotta);
}

.premium-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ── Hero Premium Section ── */
.premium-hero {
    background-color: var(--bg-very-light-peach);
    padding: 40px 0 50px 0;
    position: relative;
    overflow: hidden;
}

.premium-hero-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
    align-items: center;
}

.premium-hero-content {
    padding-right: 20px;
}

/* Breadcrumbs */
.premium-breadcrumbs {
    font-size: 13px;
    color: var(--text-light-grey);
    margin-bottom: 25px;
    font-weight: 500;
}

.premium-breadcrumbs a {
    color: var(--text-light-grey);
    text-decoration: none;
    transition: color 0.3s;
}

.premium-breadcrumbs a:hover {
    color: var(--primary-brown);
}

.premium-breadcrumbs span {
    color: var(--primary-brown);
    font-weight: 600;
}

/* Badge Pill above Title */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    background-color: #FDF1EC;
    color: var(--accent-red-brown);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 20px;
    padding: 6px 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Hero Title */
.premium-hero-content h1 {
    font-family: 'Marcellus', serif;
    font-size: 68px;
    line-height: 1.1;
    color: var(--primary-brown);
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: -0.5px;
}

/* Description Text */
.premium-hero-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 580px;
}

/* Hero Benefit Pills */
.hero-benefit-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.hero-pill {
    background: var(--white);
    border: 1px solid var(--border-light-brown);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-brown);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(72, 30, 11, 0.01);
}

.hero-pill i {
    color: var(--accent-terracotta);
    font-size: 14px;
}

/* Hero Action Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-appointment-hero {
    background-color: var(--accent-red-brown);
    color: var(--white) !important;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 13.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(166, 79, 53, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-appointment-hero:hover {
    background-color: var(--primary-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 30, 11, 0.25);
}

.icon-circle-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-whatsapp-hero {
    background-color: transparent;
    color: var(--accent-red-brown) !important;
    border: 1px solid rgba(166, 79, 53, 0.4);
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 13.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp-hero:hover {
    background-color: #FDF1EC;
    border-color: var(--accent-red-brown);
    transform: translateY(-2px);
}

/* Hero Image Side */
.hero-img-container {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    justify-content: flex-end;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 240px 240px 24px 24px;
    box-shadow: -15px 15px 40px rgba(72, 30, 11, 0.05);
}

/* Floating Satisfaction Badge */
.satisfaction-badge {
    position: absolute;
    bottom: 25px;
    right: -10px;
    background: var(--white);
    border-radius: 50%;
    width: 115px;
    height: 115px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 10px 35px rgba(72, 30, 11, 0.08);
    text-align: center;
    border: 1px solid var(--bg-light-peach);
    z-index: 10;
    animation: floatBadge 4s ease-in-out infinite;
}

.badge-smiley-icon {
    font-size: 20px;
    color: var(--accent-red-brown);
    margin-bottom: 3px;
}

.badge-percent {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-brown);
    line-height: 1.1;
}

.badge-text {
    font-size: 8.5px;
    line-height: 1.2;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 1px;
}

/* ── Metadata Grid Bar ── */
.metadata-grid-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 30px 0;
    border-top: 1px solid var(--border-light-brown);
    border-bottom: 1px solid var(--border-light-brown);
    margin-bottom: 70px;
    background-color: var(--white);
}

.meta-box {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.meta-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: var(--border-light-brown);
    opacity: 0.6;
}

.meta-box-icon {
    font-size: 22px;
    color: var(--accent-terracotta);
    margin-bottom: 12px;
}

.meta-box-value {
    font-family: 'Marcellus', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 6px;
}

.meta-box-label {
    font-size: 10.5px;
    text-transform: uppercase;
    color: var(--text-light-grey);
    font-weight: 700;
    letter-spacing: 1.5px;
}

/* ── Three Column Layout Grid (Antes/Depois, Recomendados, Depoimento) ── */
.three-column-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.15fr 1fr;
    gap: 40px;
    margin-bottom: 70px;
}

.column-card {
    display: flex;
    flex-direction: column;
}

.column-card h3.column-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    margin-bottom: 25px;
}

/* Antes e Depois Column */
.before-after-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.before-after-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.before-after-images {
    display: flex;
    gap: 12px;
}

.ba-image-container {
    flex: 1;
    position: relative;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-light-peach);
}

.ba-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(72, 30, 11, 0.8) 0%, rgba(72, 30, 11, 0) 100%);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    padding: 15px 12px 6px 12px;
    letter-spacing: 0.5px;
}

.ba-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.4;
    text-align: center;
}

/* Recomendados Column */
.recommended-list-vertical {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
}

.recommended-item-vertical {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(234, 217, 210, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
}

.recommended-item-vertical:first-child {
    padding-top: 0;
}

.recommended-item-vertical:hover {
    padding-left: 5px;
}

.rec-vertical-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-light-peach);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-terracotta);
    font-size: 15px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.recommended-item-vertical:hover .rec-vertical-icon {
    background-color: var(--accent-red-brown);
    color: var(--white);
}

.rec-vertical-details h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 3px;
}

.rec-vertical-details p {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.3;
}

.btn-view-all-outfit {
    border: 1px solid var(--border-light-brown);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-red-brown) !important;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 25px;
}

.btn-view-all-outfit:hover {
    background-color: var(--bg-light-peach);
    border-color: var(--accent-terracotta);
}

/* Testimonial & Lobby Column */
.lobby-image-box {
    border-radius: 18px;
    overflow: hidden;
    height: 190px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(72, 30, 11, 0.02);
}

.lobby-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-block {
    position: relative;
    padding-left: 20px;
}

.quote-icon-custom {
    color: #FDF1EC;
    font-size: 26px;
    position: absolute;
    left: 0;
    top: -5px;
    z-index: 1;
}

.quote-text {
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
    color: var(--primary-brown);
    font-weight: 500;
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
}

.quote-author {
    font-size: 11.5px;
    color: var(--text-light-grey);
    font-weight: 600;
}

/* ── Split Layout for Lower Half ── */
.lower-layout-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

/* Left Sidebar Sticky */
.sticky-sidebar-container {
    position: sticky;
    top: 100px;
}

.nesta-pagina-card {
    background-color: var(--white);
    border: 1px solid rgba(234, 217, 210, 0.5);
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(72, 30, 11, 0.01);
}

.nesta-pagina-card h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    margin-bottom: 20px;
}

.nesta-pagina-menu {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nesta-pagina-menu li a {
    font-size: 13.5px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
}

.nesta-pagina-menu li a:hover,
.nesta-pagina-menu li.active a {
    color: var(--accent-red-brown);
    font-weight: 700;
    padding-left: 3px;
}

.ajuda-card {
    background-color: var(--accent-red-brown);
    border-radius: 20px;
    padding: 28px 24px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 8px 25px rgba(179, 86, 57, 0.15);
}

.ajuda-card h4 {
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.ajuda-card .phone-num {
    font-family: 'Marcellus', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.ajuda-card .btn-agendar-ajuda {
    background-color: var(--white);
    color: var(--accent-red-brown) !important;
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    width: 100%;
    margin-bottom: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ajuda-card .btn-agendar-ajuda:hover {
    background-color: #FAF4F1;
    transform: translateY(-2px);
}

.ajuda-card .btn-whatsapp-ajuda {
    background-color: transparent;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    width: 100%;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ajuda-card .btn-whatsapp-ajuda:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ── Nested Content in Right Column ── */
.right-content-area {
    display: flex;
    flex-direction: column;
}

/* Scroll alignment under sticky header when navigating */
.sobre-procedimento-section,
.como-funciona-section,
.areas-tratadas-section,
.resultados-reais-section,
.faq-section {
    scroll-margin-top: 125px;
}

/* Sobre o Procedimento Nested */
.sobre-procedimento-section {
    padding: 0 0 50px 0;
    margin-bottom: 40px;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: center;
}

.sobre-content h2 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    margin-bottom: 25px;
}

.sobre-desc-primary {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--primary-brown);
    margin-bottom: 16px;
    font-weight: 500;
}

.sobre-desc-secondary {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.sobre-highlight-box {
    background-color: var(--bg-light-peach);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.sobre-highlight-icon {
    font-size: 22px;
    color: var(--accent-red-brown);
    margin-top: 2px;
}

.sobre-highlight-text {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--primary-brown);
    font-weight: 500;
}

/* Right Side Facial Close-up */
.sobre-img-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 10px 30px rgba(72, 30, 11, 0.04);
}

.sobre-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.digital-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.4) 1.5px, transparent 1.5px),
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.95;
    pointer-events: none;
}

/* Como Funciona Nested */
.como-funciona-section {
    padding: 50px 0;
    border-top: 1px solid var(--border-light-brown);
    margin-bottom: 40px;
}

.como-funciona-section h2 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    text-align: center;
    margin-bottom: 40px;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 0 20px;
}

.timeline-line {
    position: absolute;
    top: 25px;
    left: 8%;
    right: 8%;
    height: 1px;
    border-top: 1px dotted var(--border-light-brown);
    z-index: 1;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-light-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(72, 30, 11, 0.02);
}

.timeline-step.active .step-number {
    background-color: var(--accent-red-brown);
    border-color: var(--accent-red-brown);
    color: var(--white);
    box-shadow: 0 6px 15px rgba(166, 79, 53, 0.25);
}

.step-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    max-width: 190px;
    line-height: 1.4;
}

/* ── Áreas Tratadas Section ── */
.areas-tratadas-section {
    padding: 50px 0;
    border-top: 1px solid var(--border-light-brown);
    margin-bottom: 40px;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
    align-items: center;
}

.areas-content h2 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    margin-bottom: 25px;
}

.areas-checkbox-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--primary-brown);
}

.check-icon {
    color: var(--accent-red-brown);
    font-size: 15px;
}

.areas-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 260px;
    box-shadow: 0 8px 25px rgba(72, 30, 11, 0.03);
}

.areas-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Resultados Reais Section ── */
.resultados-reais-section {
    padding: 50px 0;
    border-top: 1px solid var(--border-light-brown);
    margin-bottom: 40px;
}

.resultados-reais-section h2 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    margin-bottom: 25px;
}

.resultados-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.resultado-card {
    background-color: var(--bg-very-light-peach);
    border: 1px solid rgba(234, 217, 210, 0.4);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(72, 30, 11, 0.01);
}

.resultado-img-placeholder {
    height: 180px;
    background: linear-gradient(135deg, #FAF4F1 0%, #EAD9D2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
}

.resultado-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-label {
    font-family: 'Marcellus', serif;
    font-style: italic;
    color: rgba(72, 30, 11, 0.25);
    font-size: 26px;
}

.resultado-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(72, 30, 11, 0.65);
    color: var(--white);
    font-size: 8.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.8px;
}

.resultado-badge.after-badge {
    background: var(--accent-red-brown);
}

.resultado-patient-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 4px;
}

.resultado-patient-desc {
    font-size: 12px;
    color: var(--text-light-grey);
}

/* ── FAQ Section ── */
.faq-section {
    padding: 50px 0 0 0;
    border-top: 1px solid var(--border-light-brown);
}

.faq-section h2 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    margin-bottom: 25px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-accordion-item {
    border-bottom: 1px solid rgba(234, 217, 210, 0.5);
    padding: 16px 0;
}

.faq-accordion-item:first-child {
    padding-top: 0;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary-brown);
    transition: color 0.2s;
}

.faq-header:hover {
    color: var(--accent-terracotta);
}

.faq-icon-toggle {
    color: var(--accent-red-brown);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), margin-top 0.3s ease;
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

.faq-accordion-item.active .faq-content {
    max-height: 200px;
    margin-top: 10px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), margin-top 0.3s ease;
}

.faq-accordion-item.active .faq-icon-toggle {
    transform: rotate(45deg);
}

/* ── Trust Banner (Diferenciais) ── */
.trust-diferenciais-banner {
    background-color: var(--primary-brown);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(72, 30, 11, 0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-box {
    display: flex;
    flex-direction: column;
}

.trust-box-icon {
    font-size: 24px;
    color: var(--accent-terracotta);
    margin-bottom: 16px;
}

.trust-box-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.trust-box-desc {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.45;
}

/* ── Bottom CTA Premium Banner ── */
.bottom-cta-premium-banner {
    background: linear-gradient(135deg, #1C1918 0%, #2D2725 100%);
    border-radius: 28px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.cta-text-side {
    max-width: 60%;
}

.cta-pre-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-terracotta);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cta-title {
    font-family: 'Marcellus', serif;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.25;
}

.cta-title span.italic-serif {
    font-size: 32px;
    color: var(--accent-terracotta);
}

.cta-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

.cta-buttons-side {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-cta-main {
    background-color: var(--accent-red-brown);
    color: var(--white) !important;
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(166, 79, 53, 0.2);
}

.btn-cta-main:hover {
    background-color: var(--white);
    color: var(--primary-brown) !important;
    transform: translateY(-2px);
}

.btn-cta-whatsapp {
    background: transparent;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-cta-whatsapp:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ── Absolute Footer Research Note ── */
.absolute-footer-note {
    text-align: center;
    font-size: 11px;
    color: var(--text-light-grey);
    margin-bottom: 40px;
    font-weight: 500;
}

/* ── Animation definitions ── */
@keyframes floatBadge {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* ── Compact Service Cards Grid (2x2) ── */
.compact-svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 5px;
}

.compact-svc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 145px;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(72,30,11,0.04);
    border: 1px solid rgba(234,217,210,0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.compact-svc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.compact-svc-card:hover img {
    transform: scale(1.08);
}

.compact-svc-card .compact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(72, 30, 11, 0.15) 30%, rgba(72, 30, 11, 0.85) 100%);
    z-index: 2;
    transition: background 0.3s ease;
}

.compact-svc-card:hover .compact-overlay {
    background: linear-gradient(180deg, rgba(72, 30, 11, 0.25) 20%, rgba(72, 30, 11, 0.95) 100%);
}

.compact-svc-card .compact-content {
    position: relative;
    z-index: 3;
    padding: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}

.compact-svc-card h4 {
    font-family: 'Marcellus', serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
    text-transform: none;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: color 0.3s ease;
}

.compact-svc-card:hover h4 {
    color: #FAF4F1;
}

.compact-svc-card .compact-arrow-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 10px;
    transition: all 0.3s ease;
}

.compact-svc-card:hover .compact-arrow-btn {
    background: var(--accent-red-brown);
    transform: translateX(3px) scale(1.1);
}

/* ── Procedures Filter Menu ── */
.procedures-filter-menu {
    box-shadow: 0 4px 15px rgba(72,30,11,0.03);
}

.filter-btn {
    border: none;
    background: transparent;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.filter-btn:hover {
    color: var(--primary-brown);
}

.filter-btn.active {
    background-color: var(--accent-red-brown);
    color: var(--white) !important;
    box-shadow: 0 4px 10px rgba(179, 86, 57, 0.3);
}

/* ── Slots grid and button styles ── */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(85px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.slot-btn {
    border: 1px solid rgba(234,217,210,0.6);
    background-color: #FAF4F1;
    color: #481E0B;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.slot-btn:hover:not(.disabled) {
    background-color: #C87D5C;
    color: #FFFFFF;
    border-color: #C87D5C;
    transform: translateY(-1px);
}

.slot-btn.active-slot {
    background-color: #B35639 !important;
    color: #FFFFFF !important;
    border-color: #B35639 !important;
    box-shadow: 0 4px 8px rgba(179, 86, 57, 0.2);
}

.slot-btn.disabled {
    background-color: #F0F0F0;
    color: #B0B0B0;
    border-color: #E0E0E0;
    cursor: not-allowed;
}



