/* ==========================================================================
   3R SAÚDE INTEGRADA - CSS PREMIUM
   ========================================================================== */

/* ===== VARIÁVEIS DE CORES E TIPOGRAFIA ===== */
:root {
    --primary-dark: #0B2D5C;
    --primary-medium: #1A4D8C;
    --primary-light: #2A6FB8;
    --primary-petroleum: #0A3D62;
    --gold: #D4AF37;
    --gold-light: #E8C766;
    --gold-dark: #B8941F;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-400: #A3A3A3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --success: #10B981;
    --error: #EF4444;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;

    --shadow-sm: 0 1px 2px 0 rgba(11, 45, 92, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(11, 45, 92, 0.1), 0 2px 4px -1px rgba(11, 45, 92, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(11, 45, 92, 0.1), 0 4px 6px -2px rgba(11, 45, 92, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(11, 45, 92, 0.15), 0 10px 10px -5px rgba(11, 45, 92, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(11, 45, 92, 0.25);
    --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.4);
    --shadow-glass: 0 8px 32px 0 rgba(11, 45, 92, 0.2);

    --gradient-primary: linear-gradient(135deg, #0B2D5C 0%, #1A4D8C 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    --gradient-hero: linear-gradient(135deg, rgba(11, 45, 92, 0.95) 0%, rgba(26, 77, 140, 0.85) 100%);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    --container-max: 1280px;
    --header-height: 90px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

.gold-text {
    color: var(--gold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
}

.preloader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.spinner-ring {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(2) {
    inset: 8px;
    border-top-color: var(--gold-light);
    animation-delay: -0.15s;
}

.spinner-ring:nth-child(3) {
    inset: 16px;
    border-top-color: var(--white);
    animation-delay: -0.3s;
}

@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader-text {
    color: var(--white);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(11, 45, 92, 0.08);
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    height: 75px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0.15;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--gray-500);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    position: relative;
    transition: all var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link.active {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 3px;
    transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(212, 175, 55, 0.5);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.nav-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=1920&h=1080&fit=crop') center/cover;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
}

.hero-container {
    position: relative;
    z-index: 1;
    padding: 4rem 1.5rem;
}

.hero-content {
    max-width: 800px;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.hero-feature i {
    color: var(--gold);
    font-size: 1.1rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.hero-scroll a:hover {
    opacity: 1;
}

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

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 2rem;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gradient-gold);
}

.section-subtitle::before { left: -30px; }
.section-subtitle::after { right: -30px; }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== SOBRE ===== */
.sobre {
    background:
        radial-gradient(circle at 92% 12%, rgba(212, 175, 55, 0.10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.sobre .section-header {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.5rem;
}

.sobre-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2.5rem;
    align-items: stretch;
    padding: 1.25rem;
    border: 1px solid rgba(11, 45, 92, 0.08);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 30px 80px rgba(7, 27, 54, 0.10);
}

.sobre-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 3.25rem);
}

.sobre-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.75rem);
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.12;
}

.sobre-text {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.sobre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.sobre-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid rgba(11, 45, 92, 0.08);
    border-radius: var(--radius-lg);
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sobre-feature:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 14px 30px rgba(7, 27, 54, 0.08);
}

.sobre-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
}

.sobre-feature h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.sobre-feature p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.sobre-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 640px;
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    margin: 0 auto;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: transparent;
}

.sobre-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.sobre-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s ease;
}

.sobre-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.sobre-img-wrapper:hover img {
    transform: scale(1.05);
}

.sobre-img-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    z-index: 2;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.badge-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ===== STATS ===== */
.stats {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ===== ESPECIALIDADES ===== */
.especialidades {
    background: var(--gray-50);
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.especialidade-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.especialidade-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.especialidade-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(212, 175, 55, 0.2);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.card-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.card-icon i {
    position: relative;
    z-index: 1;
}

.especialidade-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.especialidade-card:hover .card-icon::after {
    opacity: 1;
}

.especialidade-card:hover .card-icon i {
    color: var(--primary-dark);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.card-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap var(--transition-base);
}

.card-link:hover {
    gap: 0.75rem;
}

/* ===== AGENDAMENTO PREVIEW ===== */
.agendamento-preview {
    background: linear-gradient(135deg, rgba(11, 45, 92, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.agendamento-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.agendamento-content {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.agendamento-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
    text-align: left;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold);
}

.info-item i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.info-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
    background: var(--white);
}

.rating-display {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.stars {
    color: var(--gold);
    font-size: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.rating-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.rating-text {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.depoimentos-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 -1rem;
}

.depoimentos-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding: 1rem;
}

.depoimento-card {
    min-width: calc(33.333% - 1.33rem);
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    position: relative;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.depoimento-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
}

.depoimento-stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1rem;
    display: flex;
    gap: 0.25rem;
}

.depoimento-text {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.depoimento-author h4 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 0.125rem;
}

.depoimento-author span {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

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

/* ===== FAQ ===== */
.faq {
    background: var(--gray-50);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: all var(--transition-base);
}

.faq-question i {
    color: var(--gold);
    transition: transform var(--transition-base);
    font-size: 0.875rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== LOCALIZAÇÃO ===== */
.localizacao-preview {
    background: var(--white);
}

.localizacao-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: stretch;
}

.localizacao-info {
    padding: 1rem 0;
}

.info-block {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold);
}

.info-block i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    min-width: 24px;
}

.info-block h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-block p {
    color: var(--gray-600);
    line-height: 1.6;
}

.localizacao-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    min-height: 500px;
}

.localizacao-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.clinica-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 190px;
    gap: 0;
    line-height: 0;
    margin-bottom: 0;
}

.clinica-gallery img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    vertical-align: bottom;
}

.clinica-gallery .clinica-gallery-main {
    grid-column: 1 / -1;
    grid-row: span 2;
    height: 100%;
}

.clinica-gallery img:last-child {
    grid-column: 1 / -1;
    height: 100%;
}

@media (max-width: 640px) {
    .clinica-gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .clinica-gallery img {
        height: 100%;
    }

    .clinica-gallery .clinica-gallery-main {
        grid-column: 1 / -1;
        grid-row: span 2;
        height: 100%;
    }

    .clinica-gallery img:last-child {
        grid-column: auto;
        height: 100%;
    }

}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    background: rgba(212, 175, 55, 0.1);
}

.footer-logo .logo-name {
    color: var(--white);
    font-size: 1.1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-col ul li a i {
    font-size: 0.7rem;
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 0.25rem;
    min-width: 16px;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: var(--whatsapp-dark);
    color: var(--white);
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    background: var(--whatsapp);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ===== BOTÃO VOLTAR AO TOPO ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    color: var(--gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: var(--gray-50);
    padding: 1.25rem 0;
    margin-top: var(--header-height);
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.breadcrumb li {
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gray-400);
    font-size: 0.7rem;
}

.breadcrumb a {
    color: var(--primary-dark);
    font-weight: 500;
    transition: color var(--transition-base);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb li:last-child {
    color: var(--gray-700);
    font-weight: 500;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== AGENDAMENTO PÁGINA ===== */
.agendamento-page {
    background: var(--gray-50);
}

.agendamento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.agendamento-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.form-header i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray-600);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1rem;
    z-index: 1;
}

.input-icon.textarea-icon i {
    top: 1rem;
    transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: all var(--transition-base);
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    padding-top: 1rem;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error);
    background: rgba(239, 68, 68, 0.05);
}

.error-message {
    display: block;
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 0.4rem;
    min-height: 1rem;
}

.schedule-info {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    color: var(--primary-dark);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-info i {
    color: var(--gold);
}

/* CALENDAR */
.calendar-wrapper {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1rem;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.calendar-header h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    text-transform: capitalize;
}

.calendar-nav {
    width: 36px;
    height: 36px;
    background: var(--white);
    color: var(--primary-dark);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.calendar-nav:hover {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-color: var(--gold);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.5rem 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--gray-700);
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-dark);
}

.calendar-day.disabled {
    color: var(--gray-300);
    cursor: not-allowed;
}

.calendar-day.other-month {
    color: var(--gray-300);
}

.calendar-day.today {
    background: rgba(11, 45, 92, 0.1);
    color: var(--primary-dark);
    font-weight: 700;
}

.calendar-day.selected {
    background: var(--gradient-gold) !important;
    color: var(--primary-dark) !important;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

/* HORÁRIOS */
.horarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.horario-btn {
    padding: 0.75rem 0.5rem;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.horario-btn:hover:not(.disabled) {
    border-color: var(--gold);
    color: var(--primary-dark);
    background: rgba(212, 175, 55, 0.1);
}

.horario-btn.selected {
    background: var(--gradient-gold) !important;
    color: var(--primary-dark) !important;
    border-color: var(--gold) !important;
    box-shadow: var(--shadow-md);
}

.horario-btn.disabled {
    background: var(--gray-100);
    color: var(--gray-400);
    cursor: not-allowed;
    text-decoration: line-through;
}

/* CHECKBOX */
.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
    font-weight: 400 !important;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkmark {
    min-width: 22px;
    height: 22px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    flex-shrink: 0;
    margin-top: 1px;
}

.checkbox-label input:checked + .checkmark {
    background: var(--gradient-gold);
    border-color: var(--gold);
}

.checkbox-label input:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-dark);
    font-size: 0.75rem;
}

.checkbox-label a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: underline;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.form-buttons .btn {
    flex: 1;
    min-width: 150px;
}

/* RESUMO */
.resumo-agendamento {
    background: linear-gradient(135deg, rgba(11, 45, 92, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.resumo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(11, 45, 92, 0.1);
}

.resumo-item:last-child {
    border-bottom: none;
}

.resumo-label {
    color: var(--gray-600);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resumo-label i {
    color: var(--gold);
}

.resumo-valor {
    color: var(--primary-dark);
    font-weight: 600;
    text-align: right;
}

/* AGENDAMENTO SIDEBAR */
.agendamento-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.sidebar-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.sidebar-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-card h3 i {
    color: var(--gold);
}

.sidebar-card.destaque {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.sidebar-card.destaque h3 {
    color: var(--white);
    justify-content: center;
}

.sidebar-card.destaque p {
    color: rgba(255, 255, 255, 0.9);
}

.horario-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.horario-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--gold);
}

.horario-list li.fechado {
    background: rgba(239, 68, 68, 0.05);
    border-left-color: var(--error);
}

.horario-list .dia {
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.horario-list .hora {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.horario-list .fechado .hora {
    color: var(--error);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-list .info-item {
    background: transparent;
    border: none;
    border-left: 3px solid var(--gold);
    padding: 0.5rem 0 0.5rem 1rem;
    margin: 0;
}

.info-list .info-item i {
    color: var(--gold);
    font-size: 1.25rem;
}

.info-list strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.info-list p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ===== DEPOIMENTOS PÁGINA ===== */
.depoimentos-page {
    background: var(--gray-50);
}

.rating-summary {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid var(--gray-100);
}

.rating-big {
    text-align: center;
    border-right: 1px solid var(--gray-200);
    padding-right: 2rem;
}

.rating-number-big {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.rating-stars-big {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0.5rem 0;
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-bar {
    display: grid;
    grid-template-columns: 100px 1fr 50px;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 4px;
    transition: width 1s ease;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* ===== CONTATO PÁGINA ===== */
.contato-page {
    background: var(--gray-50);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contato-info {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.contato-itens {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contato-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.contato-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contato-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
}

.contato-item h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.contato-item a {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    transition: color var(--transition-base);
}

.contato-item a:hover {
    color: var(--gold-dark);
}

.contato-item p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.social-contato {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-100);
}

.social-contato h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contato-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.contato-form .form-group input,
.contato-form .form-group select,
.contato-form .form-group textarea {
    padding: 0.875rem 1rem;
    background: var(--gray-50);
}

.contato-form .form-group input:focus,
.contato-form .form-group select:focus,
.contato-form .form-group textarea:focus {
    background: var(--white);
}

.mapa-contato {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* ===== VALORES (SOBRE) ===== */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.valor-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.valor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212, 175, 55, 0.3);
}

.valor-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.75rem;
}

.valor-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}

.valor-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .sobre-grid,
    .agendamento-grid,
    .contato-grid,
    .localizacao-grid,
    .rating-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .rating-big {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding-right: 0;
        padding-bottom: 2rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .depoimento-card {
        min-width: calc(50% - 1rem);
    }
    .sobre-img-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem 1.5rem;
    }
    .badge-number {
        font-size: 2rem;
    }
    .sobre-grid {
        padding: 1rem;
    }
    .sobre-content {
        padding: 2rem;
    }
    .sobre-img-wrapper { max-width: 640px; }
}

@media (max-width: 768px) {
    :root {
        --header-height: 75px;
    }

    .section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 1rem;
    }
    .sobre .section-header {
        margin-bottom: 2rem;
    }
    .sobre-grid {
        padding: 0.65rem;
        border-radius: 22px;
    }
    .sobre-content {
        padding: 1.25rem 0.75rem;
    }
    .sobre-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .sobre-img-wrapper {
        width: 100%;
        max-width: 640px;
        min-height: 0;
        border-radius: 18px;
    }
    .sobre-image { padding: 0; }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 2rem 2rem;
        box-shadow: var(--shadow-2xl);
        transition: right 0.4s ease;
        overflow-y: auto;
        gap: 1rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-link::after {
        display: none;
    }

    .nav-btn {
        margin-top: 1rem;
    }

    .logo-tagline {
        display: none;
    }

    .logo-name {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
    }

    .sobre-features {
        grid-template-columns: 1fr;
    }

    .agendamento-info {
        grid-template-columns: 1fr;
    }

    .depoimento-card {
        min-width: calc(100% - 1rem);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .agendamento-form-wrapper,
    .contato-form-wrapper,
    .contato-info {
        padding: 1.5rem;
    }

    .form-buttons {
        flex-direction: column;
    }

    .form-buttons .btn {
        width: 100%;
    }

    .horarios-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 44px;
        height: 44px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-features {
        gap: 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .cta-section {
        padding: 2.5rem 1.5rem;
    }
}

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

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

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .horarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .especialidades-grid,
    .depoimentos-grid,
    .valores-grid {
        grid-template-columns: 1fr;
    }

    .rating-bar {
        grid-template-columns: 70px 1fr 40px;
        font-size: 0.8rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .header, .whatsapp-float, .back-to-top, .footer, .preloader {
        display: none !important;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--primary-dark);
}

::-moz-selection {
    background: var(--gold);
    color: var(--primary-dark);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}
/* Campanhas dinâmicas */
.campaigns-section{background:#f7f4ed}.campaigns-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}.campaign-card{overflow:hidden;background:#fff;border:1px solid rgba(201,162,77,.25);border-radius:16px;box-shadow:0 15px 40px rgba(7,27,54,.1);transition:.3s}.campaign-card:hover{transform:translateY(-7px);box-shadow:0 22px 50px rgba(7,27,54,.16)}.campaign-card>img{display:block;width:100%;height:230px;object-fit:cover}.campaign-card-content{padding:28px}.campaign-label{color:#b58a32;font-size:12px;font-weight:800;letter-spacing:1.8px}.campaign-card h3{margin:12px 0;font-size:25px;color:#0b2d5c}.campaign-card p{margin:0 0 22px;color:#697386;line-height:1.7}.campaign-card .btn{display:inline-flex}@media(max-width:900px){.campaigns-grid{grid-template-columns:1fr 1fr}}@media(max-width:620px){.campaigns-grid{grid-template-columns:1fr}}
