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

/* Variables - Paleta Céu/Turquesa Premium */
:root {
    /* Paleta Principal */
    --sky-clear: #E0F2FE;
    --turquoise-vibrant: #0891B2;
    --navy-deep: #0E7490;
    --ink-deep: #083344;
    --ink-soft: #155E75;
    --white: #FFFFFF;
    --mist-blue: #F0F9FF;

    /* Ações */
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #20BA5A;

    /* Cores de Texto */
    --text-primary: var(--ink-deep);
    --text-secondary: var(--ink-soft);
    --text-white: var(--white);

    /* Superfícies */
    --background-page: #F7FCFF;
    --surface-white: var(--white);

    /* Bordas e Sombras */
    --border-subtle: rgba(8, 145, 178, 0.18);
    --border-strong: rgba(14, 116, 144, 0.34);
    /* Sombras */
    --shadow-soft: 0 14px 40px rgba(8, 51, 68, 0.08);
    --shadow-medium: 0 20px 55px rgba(8, 51, 68, 0.13);
    --shadow-strong: 0 28px 80px rgba(8, 51, 68, 0.2);
    --shadow-glow: 0 0 45px rgba(8, 145, 178, 0.2);

    /* Gradientes */
    --gradient-hero: linear-gradient(135deg, rgba(8, 51, 68, 0.97) 0%, rgba(14, 116, 144, 0.94) 52%, rgba(8, 145, 178, 0.84) 100%);
    --gradient-accent: linear-gradient(135deg, var(--turquoise-vibrant), var(--navy-deep));

    /* Outros */
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Força o esquema claro e impede ajustes automáticos do navegador */
    color-scheme: light;
}

/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background:
        radial-gradient(circle at 8% 0%, rgba(224, 242, 254, 0.9) 0%, transparent 34%),
        radial-gradient(circle at 92% 12%, rgba(8, 145, 178, 0.12) 0%, transparent 28%),
        var(--background-page);
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { 
    font-size: clamp(2.2rem, 5vw, 3.8rem); 
    font-weight: 700;
}
h2 { 
    font-size: clamp(1.6rem, 4vw, 2.8rem); 
    font-weight: 600;
}
h3 { 
    font-size: clamp(1.3rem, 3vw, 1.9rem); 
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Buttons */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp-green);
    color: var(--text-white);
    padding: 18px 36px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.28) inset;
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 46%, transparent 68%);
    transform: translateX(-130%);
    transition: transform 0.55s ease;
    z-index: 0;
    pointer-events: none;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.34) inset;
}

.btn-whatsapp:hover::before {
    transform: translateX(130%);
}

.btn-whatsapp:focus-visible,
.whatsapp-float-btn:focus-visible,
.chat-btn:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.32);
    outline-offset: 4px;
}

.btn-center {
    display: flex;
    justify-content: center;
    margin: 3rem auto 0;
    width: fit-content;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Hero Section - Com imagem de fundo */
.hero {
    background: 
        radial-gradient(circle at 78% 18%, rgba(224, 242, 254, 0.18) 0%, transparent 28%),
        radial-gradient(circle at 12% 78%, rgba(8, 145, 178, 0.26) 0%, transparent 34%),
        repeating-linear-gradient(135deg, rgba(224, 242, 254, 0.08) 0 1px, transparent 1px 18px),
        var(--gradient-hero);
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, rgba(8, 51, 68, 0.24), transparent 42%, rgba(224, 242, 254, 0.08)),
        radial-gradient(circle at 42% 28%, rgba(224, 242, 254, 0.16) 0%, transparent 34%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.32) 0%, rgba(8, 145, 178, 0.08) 38%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 20s ease-in-out infinite;
    filter: blur(2px);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
    align-items: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(224, 242, 254, 0.92);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 16px 38px rgba(8, 51, 68, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: fadeInDown 1s ease;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.15;
    color: var(--text-white);
    text-shadow: 2px 2px 8px rgba(8, 51, 68, 0.32);
    text-align: center;
    max-width: 900px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    color: var(--text-white);
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(8, 51, 68, 0.32);
    text-align: center;
    max-width: 700px;
}

.hero-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(224, 242, 254, 0.12);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(224, 242, 254, 0.28);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(224, 242, 254, 0.18);
    transform: translateX(10px);
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: var(--sky-clear);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

.feature-text p {
    font-size: 0.95rem;
    color: rgba(224, 242, 254, 0.9);
    margin: 0;
    line-height: 1.4;
}

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.btn-primary {
    font-size: 1.15rem;
    padding: 20px 40px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.36);
}

.hero-trust-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.trust-icon {
    width: 18px;
    height: 18px;
    color: var(--sky-clear);
}

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

.hero-photo-container {
    position: relative;
    display: inline-block;
}

.hero-photo {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: 0 28px 70px rgba(8, 51, 68, 0.34), var(--shadow-glow);
    border: 4px solid rgba(224, 242, 254, 0.24);
    transition: var(--transition);
    filter: saturate(1.02) contrast(1.02);
}

.hero-photo:hover {
    transform: translateY(-10px);
    box-shadow: 0 34px 86px rgba(8, 51, 68, 0.42), 0 0 60px rgba(8, 145, 178, 0.26);
}

.hero-photo-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.8;
    z-index: -1;
    animation: pulse 3s infinite;
    box-shadow: 0 0 44px rgba(8, 145, 178, 0.34);
}

.hero-photo-decoration::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(224, 242, 254, 0.62));
    border-radius: 50%;
    opacity: 0.7;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.stat-item {
    background: rgba(255, 255, 255, 0.98);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(8, 51, 68, 0.16);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(8, 145, 178, 0.24);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(8, 51, 68, 0.22);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--turquoise-vibrant);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: normal;
    max-width: 140px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 12% 18%, rgba(8, 145, 178, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 88% 84%, rgba(14, 116, 144, 0.1) 0%, transparent 28%),
        linear-gradient(180deg, var(--white) 0%, rgba(224, 242, 254, 0.62) 58%, rgba(248, 252, 255, 0.96) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 116, 144, 0.13) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 116, 144, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-content {
    display: block;
    position: relative;
    z-index: 1;
}

.about-text {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.section-divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, var(--turquoise-vibrant), var(--navy-deep));
    margin: 2rem 0;
    border-radius: 2px;
}

.section-title {
    font-size: 2.6rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

.about-description p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-text .section-divider {
    margin: 2rem auto;
}

.about-text .btn-whatsapp {
    margin-top: 1rem;
}

/* Practice Areas Section */
.practice-areas {
    padding: 110px 0;
    background:
        linear-gradient(135deg, rgba(224, 242, 254, 0.96) 0%, rgba(255, 255, 255, 0.94) 48%, rgba(224, 242, 254, 0.9) 100%),
        url("./img/Consultorio/cl%C3%ADnica%20frente.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.practice-areas::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(224, 242, 254, 0.94) 0%, rgba(224, 242, 254, 0.82) 52%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 0;
}

.practice-areas .container {
    position: relative;
    z-index: 1;
}

.practice-heading {
    max-width: 820px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: var(--navy-deep);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.practice-heading p {
    max-width: 760px;
    margin: 18px auto 0;
    font-size: 1.08rem;
    color: var(--text-secondary);
}

.practice-slider {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 58px 56px;
}

.practice-slider-shell {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(8, 145, 178, 0.24);
    box-shadow: 0 24px 60px rgba(8, 51, 68, 0.18);
    background: #083344;
}

.practice-slider-track {
    position: relative;
    min-height: 520px;
}

.practice-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    align-items: stretch;
    opacity: 0;
    transform: translateX(42px);
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.practice-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.practice-slide img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.02);
}

.practice-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 54px;
    background: linear-gradient(145deg, rgba(8, 51, 68, 0.98) 0%, rgba(14, 116, 144, 0.94) 100%);
    color: var(--text-white);
}

.practice-tag {
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(224, 242, 254, 0.16);
    border: 1px solid rgba(224, 242, 254, 0.3);
    color: rgba(224, 242, 254, 0.95);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.practice-slide-content h3 {
    color: var(--text-white);
    font-size: 3rem;
    margin-bottom: 18px;
}

.practice-slide-content p {
    color: rgba(224, 242, 254, 0.92);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.practice-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: 28px;
    color: var(--text-white);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(224, 242, 254, 0.48);
    padding-bottom: 6px;
    transition: gap 0.25s ease, border-color 0.25s ease;
}

.practice-link:hover {
    gap: 14px;
    border-color: var(--text-white);
}

.practice-nav {
    position: absolute;
    top: calc(50% - 28px);
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: var(--text-primary);
    box-shadow: 0 14px 28px rgba(8, 51, 68, 0.18);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    z-index: 2;
}

.practice-nav:hover,
.practice-nav:focus-visible {
    transform: translateY(-2px);
    background: var(--turquoise-vibrant);
    color: var(--text-white);
    outline: none;
}

.practice-nav-prev {
    left: 0;
}

.practice-nav-next {
    right: 0;
}

.practice-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.practice-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: rgba(14, 116, 144, 0.34);
    cursor: pointer;
    transition: width 0.25s ease, border-radius 0.25s ease, background 0.25s ease;
}

.practice-dot.is-active {
    width: 34px;
    border-radius: 999px;
    background: var(--turquoise-vibrant);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: 
        radial-gradient(circle at 18% 12%, rgba(8, 145, 178, 0.12) 0%, transparent 28%),
        radial-gradient(circle at 82% 64%, rgba(14, 116, 144, 0.12) 0%, transparent 32%),
        linear-gradient(135deg, 
            rgba(224, 242, 254, 0.76) 0%, 
            rgba(255, 255, 255, 0.96) 48%,
            rgba(224, 242, 254, 0.88) 100%
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.4) 50px,
            rgba(255, 255, 255, 0.4) 51px
        );
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(14, 116, 144, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(224, 242, 254, 0.92) 100%);
    padding: 45px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--turquoise-vibrant), var(--navy-deep), var(--turquoise-vibrant));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--border-strong);
}

.benefit-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon i {
    font-size: 3rem;
    color: var(--turquoise-vibrant);
    background: var(--sky-clear);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon i {
    color: var(--navy-deep);
    background: var(--white);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.section-title-center {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
    color: var(--text-primary);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

/* Treatment Section */
.treatment {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 12% 28%, rgba(8, 145, 178, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 90% 75%, rgba(14, 116, 144, 0.1) 0%, transparent 28%),
        linear-gradient(to bottom, 
            rgba(248, 252, 255, 1) 0%, 
            rgba(224, 242, 254, 0.72) 50%,
            rgba(248, 252, 255, 1) 100%
        );
    text-align: center;
    position: relative;
    overflow: hidden;
}

.treatment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(14, 116, 144, 0.45) 50%, 
        transparent 100%
    );
}

.treatment::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(14, 116, 144, 0.45) 50%, 
        transparent 100%
    );
}

.treatment .section-title-center {
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.treatment-content {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.treatment-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.8;
}

.treatment-steps {
    max-width: 980px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    list-style: none;
    padding: 0;
    text-align: left;
}

.treatment-step {
    min-height: 190px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--surface-white);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
    transition: var(--transition);
}

.treatment-step:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-medium);
}

.treatment-step-number {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--gradient-accent);
    color: var(--text-white);
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1;
}

.treatment-step h3 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 1.22rem;
    line-height: 1.3;
    letter-spacing: 0;
}

.treatment-step p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.7;
    text-align: left;
}

/* Office Gallery Section */
.office-gallery {
    padding: 110px 0;
    background:
        radial-gradient(circle at 86% 18%, rgba(8, 145, 178, 0.12) 0%, transparent 28%),
        radial-gradient(circle at 14% 82%, rgba(14, 116, 144, 0.1) 0%, transparent 30%),
        linear-gradient(180deg, rgba(248, 252, 255, 1) 0%, rgba(255, 255, 255, 0.96) 46%, rgba(224, 242, 254, 0.7) 100%);
    position: relative;
    overflow: hidden;
}

.office-gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 51, 68, 0.03), transparent 34%, rgba(8, 145, 178, 0.05)),
        repeating-linear-gradient(135deg, rgba(8, 145, 178, 0.06) 0 1px, transparent 1px 22px);
    pointer-events: none;
}

.office-gallery .container {
    position: relative;
    z-index: 1;
}

.office-gallery-heading {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.office-gallery-heading p {
    max-width: 720px;
    margin: 18px auto 0;
    font-size: 1.08rem;
    color: var(--text-secondary);
}

.office-gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(220px, 0.82fr));
    grid-auto-rows: 240px;
    gap: 18px;
    margin-top: 48px;
}

.office-gallery-card {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(8, 145, 178, 0.18);
    background: var(--ink-deep);
    box-shadow: var(--shadow-soft);
    isolation: isolate;
}

.office-gallery-card-featured {
    grid-row: span 2;
    min-height: 498px;
}

.office-gallery-card:nth-child(4) {
    grid-column: span 2;
}

.office-gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: saturate(1.03) contrast(1.02);
    transition: transform 0.45s ease;
}

.office-gallery-card-featured img {
    object-position: center center;
}

.office-gallery-card:hover img {
    transform: scale(1.04);
}

.office-gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(8, 51, 68, 0.82) 100%);
    z-index: 1;
    pointer-events: none;
}

.office-gallery-card figcaption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--text-white);
}

.office-gallery-card figcaption span {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(224, 242, 254, 0.9);
}

.office-gallery-card figcaption strong {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.1;
    color: var(--text-white);
}

/* Schedule Section */
.schedule {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 78% 22%, rgba(8, 145, 178, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 12% 78%, rgba(14, 116, 144, 0.1) 0%, transparent 26%),
        linear-gradient(180deg, 
            rgba(255, 255, 255, 1) 0%, 
            rgba(224, 242, 254, 0.64) 50%,
            rgba(248, 252, 255, 1) 100%
        );
    position: relative;
    overflow: hidden;
}

.schedule::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 116, 144, 0.14) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.schedule::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.schedule-title {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
    font-weight: 600;
}

.schedule-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.schedule-text h2 {
    display: none; /* Esconder o h2 original já que temos o título separado */
}

.schedule-text p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.schedule-address {
    color: var(--text-primary);
}

.schedule-image {
    text-align: center;
}

.schedule-image img {
    width: 70%;
    max-width: 360px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Footer */
.footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(224, 242, 254, 0.22) 0%, transparent 30%),
        radial-gradient(circle at 86% 22%, rgba(8, 145, 178, 0.28) 0%, transparent 34%),
        linear-gradient(145deg, rgba(8, 51, 68, 0.82) 0%, rgba(14, 116, 144, 0.96) 52%, rgba(8, 145, 178, 0.82) 100%),
        repeating-linear-gradient(135deg, rgba(224, 242, 254, 0.12) 0 1px, transparent 1px 18px),
        var(--navy-deep);
    color: var(--text-white);
    padding: 96px 0 36px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(224, 242, 254, 0.16) 0%, transparent 34%, transparent 66%, rgba(8, 51, 68, 0.22) 100%),
        radial-gradient(circle at 50% 100%, rgba(224, 242, 254, 0.12), transparent 36%);
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(224, 242, 254, 0.72) 50%, transparent 100%);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    grid-template-areas:
        "brand contacts"
        "cta contacts"
        "bottom bottom";
    gap: 28px 48px;
    align-items: start;
}

.footer-brand {
    grid-area: brand;
    max-width: 560px;
    margin: 0;
    text-align: left;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(224, 242, 254, 0.96);
    border: 1px solid rgba(224, 242, 254, 0.72);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy-deep);
    box-shadow: 0 12px 28px rgba(8, 51, 68, 0.14);
}

.footer-brand h3 {
    margin: 16px 0 12px;
    color: var(--text-white);
    font-size: clamp(2.2rem, 4vw, 3rem);
}

.footer-brand p {
    margin: 0;
    color: rgba(224, 242, 254, 0.92);
    font-size: 1.05rem;
    line-height: 1.75;
}

.footer-contacts {
    grid-area: contacts;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.footer-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    width: 100%;
    min-height: 82px;
    padding: 18px;
    border-radius: 8px;
    text-decoration: none;
    background: rgba(224, 242, 254, 0.13);
    border: 1px solid rgba(224, 242, 254, 0.3);
    color: var(--text-white);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-contact-card:first-child {
    grid-column: 1 / -1;
}

.footer-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(8, 51, 68, 0.2);
    background: rgba(224, 242, 254, 0.96);
    color: var(--ink-deep);
}

.footer-contact-card i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 242, 254, 0.22);
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact-card div {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    max-width: 100%;
}

.footer-contact-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(224, 242, 254, 0.86);
}

.footer-contact-card strong {
    display: block;
    max-width: 100%;
    color: var(--text-white);
    font-size: clamp(0.86rem, 1vw, 1rem);
    line-height: 1.2;
    white-space: nowrap;
    overflow-wrap: break-word;
    word-break: normal;
}

.footer-contact-card:hover .footer-contact-label,
.footer-contact-card:hover strong {
    color: var(--ink-deep);
}

.footer-contact-static {
    cursor: default;
}

.footer-contact-static:hover {
    transform: none;
    box-shadow: none;
    background: rgba(224, 242, 254, 0.13);
    color: var(--text-white);
}

.footer-contact-static:hover .footer-contact-label {
    color: rgba(224, 242, 254, 0.86);
}

.footer-contact-static:hover strong {
    color: var(--text-white);
}

.footer-cta-wrap {
    grid-area: cta;
    display: flex;
    justify-content: flex-start;
}

.footer-cta {
    min-width: 260px;
    justify-content: center;
}

.footer-bottom {
    grid-area: bottom;
    margin-top: 12px;
    padding-top: 22px;
    border-top: 1px solid rgba(224, 242, 254, 0.28);
    text-align: left;
}

.footer-bottom p {
    margin: 0;
    color: rgba(224, 242, 254, 0.86);
    font-size: 0.92rem;
}

.footer-meta {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr) minmax(0, 0.85fr);
    gap: 18px;
    align-items: center;
    max-width: none;
    margin: 0;
}

.footer-meta p {
    margin: 0;
    color: rgba(224, 242, 254, 0.88);
    line-height: 1.7;
}

.footer-copyright {
    font-size: 0.88rem;
    text-align: right;
}

.footer .btn-whatsapp {
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.28);
}

.footer .btn-whatsapp:hover {
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.35);
}

@media (max-width: 1180px) {
    .footer-contacts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "contacts"
            "cta"
            "bottom";
        gap: 24px;
    }

    .footer-brand {
        max-width: 720px;
        text-align: center;
        margin: 0 auto;
    }

    .footer-contacts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-cta-wrap {
        justify-content: center;
    }

    .footer-meta {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 8px;
    }

    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 76px 0 30px;
    }

    .footer-contacts {
        grid-template-columns: 1fr;
    }

    .footer-contact-card {
        min-height: 76px;
        padding: 14px;
    }

    .footer-cta {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 64px 0 28px;
    }

    .footer-badge {
        font-size: 0.72rem;
    }

    .footer-brand h3 {
        font-size: 2rem;
    }

    .footer-brand p {
        font-size: 0.98rem;
    }

    .footer-contact-card {
        gap: 10px;
        padding: 12px;
    }

    .footer-contact-card i {
        width: 32px;
        height: 32px;
    }

    .footer-contact-card strong {
        font-size: 0.95rem;
    }

    .footer-bottom p {
        font-size: 0.86rem;
    }

    .footer-meta p {
        font-size: 0.9rem;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

body.chat-open .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
}

.whatsapp-float-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp-green);
    color: var(--text-white);
    padding: 16px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 18px 44px rgba(37, 211, 102, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.28) inset;
    transition: var(--transition);
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.whatsapp-float-btn:hover {
    background: var(--whatsapp-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 24px 56px rgba(37, 211, 102, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.34) inset;
}

.whatsapp-float-text {
    display: none;
}

.whatsapp-float-btn:hover .whatsapp-float-text {
    display: block;
}

.chat-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 51, 68, 0.52);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.chat-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

/* WhatsApp Mini Chat */
.whatsapp-mini-chat {
    position: fixed;
    bottom: 24px;
    right: 30px;
    width: 320px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 22px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-strong);
    z-index: 1001;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
    display: none;
}

.whatsapp-mini-chat.show {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: var(--gradient-accent);
    color: var(--text-white);
    padding: 15px 20px;
    border-radius: 22px 22px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 2px solid rgba(224, 242, 254, 0.58);
}

body.chat-open {
    overflow: hidden;
}

.chat-info h4 {
    color: var(--text-white);
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chat-info span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.chat-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.chat-close:hover {
    background: rgba(224, 242, 254, 0.16);
}

.chat-body {
    padding: 20px;
}

.chat-message {
    background: var(--mist-blue);
    padding: 15px;
    border-radius: 15px 15px 15px 5px;
    margin-bottom: 15px;
    border: 1px solid var(--border-subtle);
}

.chat-message p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.chat-message p:last-child {
    margin-bottom: 0;
}

.chat-footer {
    padding: 0 20px 20px;
}

.chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--whatsapp-green);
    color: var(--text-white);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.2);
}

.chat-btn:hover {
    background: var(--whatsapp-green-hover);
    transform: translateY(-1px);
}

.chat-btn .whatsapp-icon {
    width: 18px;
    height: 18px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Animation Classes */
.animate-fade-down {
    animation: fadeInDown 0.8s ease-out;
}

.animate-fade-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@media (max-width: 980px) {
    .office-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
    }

    .office-gallery-card {
        height: 230px;
    }

    .office-gallery-card-featured {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 420px;
        min-height: 0;
    }

    .office-gallery-card:nth-child(4) {
        grid-column: span 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: 90vh;
        background-attachment: scroll;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
        text-align: center;
        width: 100%;
    }
    
    .hero-main-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-photo {
        width: 90%;
        height: 100%;
    }
    
    .hero-photo-decoration {
        width: 80px;
        height: 80px;
        top: -15px;
        right: -15px;
    }
    
    .hero-photo-decoration::before {
        width: 50px;
        height: 50px;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-badge {
        padding: 10px 20px;
    }
    
    .badge-text {
        font-size: 0.85rem;
    }
    
    .hero-features {
        gap: 16px;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        padding: 16px;
    }
    
    .feature-text h3 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
    
    .hero-cta-group {
        align-items: center;
        width: 100%;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-text {
        font-size: 0.85rem;
        justify-content: center;
    }
    
    .hero-stats {
        position: static;
        transform: none;
        flex-direction: row;
        gap: 12px;
        margin-top: 20px;
        justify-content: center;
    }
    
    .stat-item {
        padding: 16px 20px;
        flex: 1;
        max-width: 160px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-photo-container {
        margin-bottom: 30px;
    }
    
    .about-content {
        text-align: center;
    }

    .about-text {
        display: block;
    }

    .about-text .btn-whatsapp {
        margin: 1.2rem auto 0;
    }
    
    .schedule-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .schedule-title {
        font-size: 2.4rem;
        margin-bottom: 2.5rem;
        text-align: center;
        width: 100%;
    }
    
    .schedule-main-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .schedule-image {
        order: 1;
    }

    .schedule-image img {
        width: 74%;
        max-width: 320px;
    }

    .schedule-text {
        order: 2;
    }
    
    .practice-areas {
        padding: 82px 0;
        background-attachment: scroll;
    }

    .practice-heading {
        margin-bottom: 34px;
    }

    .practice-slider {
        padding: 0 0 48px;
    }

    .practice-slider-shell,
    .practice-slider-track {
        min-height: 680px;
    }

    .practice-slide {
        grid-template-columns: 1fr;
        grid-template-rows: 300px 1fr;
    }

    .practice-slide img {
        min-height: 300px;
    }

    .practice-slide-content {
        padding: 34px 28px;
    }

    .practice-slide-content h3 {
        font-size: 2.35rem;
    }

    .practice-nav {
        top: auto;
        bottom: 0;
        width: 42px;
        height: 42px;
    }

    .practice-nav-prev {
        left: calc(50% - 92px);
    }

    .practice-nav-next {
        right: calc(50% - 92px);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-title-center {
        font-size: 2.2rem;
    }
    
    .about, .schedule, .treatment, .office-gallery {
        padding: 80px 0;
    }

    .office-gallery-heading p {
        font-size: 1rem;
    }

    .office-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 14px;
        margin-top: 36px;
    }

    .office-gallery-card {
        height: 260px;
    }

    .office-gallery-card-featured {
        height: 420px;
    }

    .office-gallery-card figcaption {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .treatment-steps {
        grid-template-columns: 1fr;
        max-width: 680px;
        gap: 18px;
    }

    .treatment-step {
        min-height: auto;
        padding: 26px 24px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float-btn {
        padding: 12px 16px;
    }
    
    .whatsapp-float-text {
        display: none !important;
    }
    
    .whatsapp-mini-chat {
        width: 280px;
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .practice-slider-shell,
    .practice-slider-track {
        min-height: 720px;
    }

    .practice-slide {
        grid-template-rows: 260px 1fr;
    }

    .practice-slide img {
        min-height: 260px;
    }

    .practice-slide-content {
        padding: 28px 22px 34px;
    }

    .practice-slide-content h3 {
        font-size: 2rem;
    }

    .practice-slide-content p {
        font-size: 1rem;
    }

    .office-gallery-card {
        height: 230px;
    }

    .office-gallery-card-featured {
        height: 360px;
    }

    .office-gallery-card figcaption span {
        font-size: 0.7rem;
    }

    .office-gallery-card figcaption strong {
        font-size: 1.35rem;
    }
    
    .schedule-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }
    
    .hero-photo-decoration {
        width: 100px;
        height: 100px;
        top: -10px;
        right: -10px;
    }
    
    .hero-photo-decoration::before {
        width: 40px;
        height: 40px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1;
        min-width: 140px;
        padding: 14px 16px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .btn-whatsapp {
        padding: 16px 28px;
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .treatment-content p {
        text-align: center;
        font-size: 1.05rem;
    }

    .treatment-step {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
        text-align: left;
    }

    .treatment-step-number {
        width: 54px;
        height: 54px;
        font-size: 1.35rem;
    }

    .treatment-step h3 {
        font-size: 1.08rem;
    }

    .treatment-step p {
        font-size: 0.98rem;
        text-align: left;
    }
    
    .section-divider {
        width: 60px;
        height: 3px;
    }

    .whatsapp-mini-chat {
        width: calc(100vw - 32px);
        right: 16px;
        bottom: 16px;
    }
}
