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

/* =========================
   Variáveis Globais
   ========================= */
:root {
    /* Medical clinic color palette */
    --primary: #2563eb;
    --primary-light: #dbeafe;
    --secondary: #f59e0b;
    --secondary-light: #fef3c7;
    
    --background: #ffffff;
    --foreground: #374151;
    --muted: #f9fafb;
    --muted-foreground: #6b7280;
    --border: #e5e7eb;

    /* Health Plans */
    --plan-premium: var(--secondary);
    --plan-standard: var(--primary);
    --plan-basic: var(--muted-foreground);

    /* Adicionada para textos secundários */
    --text-secondary: #6b7280;
    
    --medical-blue: #2563eb;
    --medical-blue-light: #dbeafe;
    --medical-gold: #f59e0b;
    --medical-gold-light: #fef3c7;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 5rem 0;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-medical: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* =========================
   Modo Escuro
   ========================= */
[data-theme="dark"] {
    --primary: #3b82f6;
    --primary-light: #1e3a8a;
    --secondary: #fbbf24;
    --secondary-light: #92400e;
    
    --background: #111827;
    --foreground: #f9fafb;
    --muted: #1f2937;
    --muted-foreground: #d1d5db;
    --border: #374151;

    --text-secondary: #d1d5db;
    
    --medical-blue: #3b82f6;
    --medical-blue-light: #1e3a8a;
    --medical-gold: #fbbf24;
    --medical-gold-light: #92400e;
    
    /* Shadows para modo escuro */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.3), 0 2px 4px -2px rgb(0 0 0 / 0.3);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.3), 0 4px 6px -4px rgb(0 0 0 / 0.3);
    --shadow-medical: 0 20px 25px -5px rgb(0 0 0 / 0.3), 0 8px 10px -6px rgb(0 0 0 / 0.3);
}

/* Garantir que todos os elementos usem as variáveis corretas */
[data-theme="dark"] body {
    background-color: var(--background);
    color: var(--foreground);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--foreground);
}

[data-theme="dark"] p {
    color: var(--muted-foreground);
}

[data-theme="dark"] .card {
    background-color: var(--muted);
    color: var(--foreground);
    border-color: var(--border);
}

[data-theme="dark"] .service-card {
    background-color: var(--muted);
    color: var(--foreground);
}

[data-theme="dark"] .service-card h3 {
    color: var(--foreground);
}

[data-theme="dark"] .service-card p {
    color: var(--muted-foreground);
}

[data-theme="dark"] .plan-card {
    background-color: var(--muted);
    color: var(--foreground);
    border-color: var(--border);
}

[data-theme="dark"] .plan-card h3 {
    color: var(--foreground);
}

[data-theme="dark"] .plan-card p {
    color: var(--muted-foreground);
}

[data-theme="dark"] .navbar {
    background-color: rgba(17, 24, 39, 0.95);
    border-bottom-color: var(--border);
}
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* =========================
   Acessibilidade para animações
   ========================= */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================
   Base e Utilitários
   ========================= */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

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

/* =========================
   Botões
   ========================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-primary:active,
.btn-primary:focus {
    background-color: #1e40af;
    color: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
    outline: none;
}

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

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

.btn-outline:active,
.btn-outline:focus {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
    outline: none;
}

/* Melhor contraste para modo escuro */
[data-theme="dark"] .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

[data-theme="dark"] .btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 1.25rem;
    padding: 1rem 2rem;
    border: 2px solid var(--secondary-light);
    box-shadow: var(--shadow-medical);
    animation: pulse-glow 2s infinite;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    color: white;
}

.btn-cta:active,
.btn-cta:focus {
    color: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
    outline: none;
}

.btn-emergency {
    background-color: #dc2626;
    color: white;
    border: 2px solid #dc2626;
}

.btn-emergency:hover {
    background-color: #b91c1c;
    color: white;
}

.btn-emergency:active,
.btn-emergency:focus {
    background-color: #991b1b;
    color: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.3);
    outline: none;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: var(--shadow-medical);
    }
    50% {
        box-shadow: 0 25px 50px -12px rgb(37 99 235 / 0.25);
    }
}

/* =========================
   Navegação
   ========================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--navbar-bg, rgba(255,255,255,0.95));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all var(--transition-normal);
    min-height: 70px; /* Garantir altura mínima */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); /* Sombra leve para destacar ao rolar */
}

[data-theme="dark"] .navbar {
    background-color: var(--navbar-bg-dark, #111827);
    border-bottom: 1px solid #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25); /* Sombra mais forte no escuro */
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 1rem;
    min-height: 50px; /* Altura mínima para o conteúdo */
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    max-width: 100%; /* Evitar overflow */
}

.nav-logo .logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0; /* Evitar que a imagem seja comprimida */
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: none; /* Exibir nome completo */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 700;
    transition: color var(--transition-fast);
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(255,255,255,0.15);
    opacity: 1;
}

[data-theme="dark"] .nav-links a {
    color: #fff !important;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    opacity: 1;

[data-theme="dark"] .nav-links a {
    color: #f9fafb !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Botão de alternância de tema */
.theme-toggle-btn {
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: var(--muted);
    color: var(--foreground);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.theme-toggle-btn:hover {
    background-color: var(--border);
    transform: scale(1.05);
}

.theme-icon {
    width: 20px;
    height: 20px;
    transition: all var(--transition-normal);
    position: absolute;
}

.light-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.dark-icon {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="dark"] .light-icon {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="dark"] .dark-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.btn-agendar {
    background-color: var(--primary);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-agendar:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

/* =========================
   Hero Section
   ========================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 50%, var(--secondary) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    background-size: 60px 60px;
}

.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.decoration-1 {
    top: 25%;
    left: 25%;
    width: 16rem;
    height: 16rem;
    background-color: rgba(245, 158, 11, 0.2);
    animation-delay: 0s;
}

.decoration-2 {
    bottom: 25%;
    right: 25%;
    width: 12rem;
    height: 12rem;
    background-color: rgba(37, 99, 235, 0.2);
    animation-delay: 3s;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-left {
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero-logo-img {
    width: 12rem;
    height: 12rem;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title-accent {
    display: block;
    color: var(--secondary);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-right {
    animation: fadeInUp 1s ease-out 1s both;
}
.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-medical);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .contact-card {
    background: rgba(31, 41, 55, 0.95);
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.contact-card h3 {
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    color: var(--foreground);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--foreground);
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

/* Melhor contraste para modo escuro */
[data-theme="dark"] .contact-item strong {
    color: var(--foreground);
}

[data-theme="dark"] .contact-item p {
    color: var(--muted-foreground);
    opacity: 1;
}

/* =========================
   Section Styles
   ========================= */
section {
    padding: var(--section-padding);
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 auto;
}

/* =========================
   About Section
   ========================= */
.about {
    background: linear-gradient(135deg, var(--muted) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.about-text h3 {
    color: var(--foreground);
    margin-bottom: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature i {
    color: var(--primary);
    background-color: var(--primary-light);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-top: 0.25rem;
}

.feature h4 {
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.feature p {
    margin: 0;
}

/* =========================
   Services Section
   ========================= */
.services {
    background-color: var(--background);
}

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

.service-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medical);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: transform var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    color: white;
    font-size: 2rem;
}

.service-badge {
    display: inline-block;
    background-color: var(--secondary-light);
    color: var(--secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--foreground);
    margin-bottom: 1rem;
    transition: color var(--transition-normal);
}

.service-card:hover h3 {
    color: var(--primary);
}

.services-cta {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.services-cta h3 {
    color: var(--foreground);
    margin-bottom: 1rem;
}

.services-cta p {
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================
   Insurance Section
   ========================= */
.insurance {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.insurance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.insurance-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.insurance-info h3 {
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.insurance-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.insurance-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

.insurance-info li i {
    color: var(--primary);
    background-color: var(--primary-light);
    padding: 0.25rem;
    border-radius: 50%;
}

.insurance-contact {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.insurance-contact p {
    margin-bottom: 1rem;
}

/* =========================
   Appointment Section
   ========================= */
.appointment {
    background-color: var(--background);
}

.appointment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.appointment-form {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.appointment-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.info-card h3 {
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

.info-card li i {
    color: var(--primary);
}

.emergency-contact {
    background-color: rgba(220, 38, 38, 0.05);
    border: 2px solid rgba(220, 38, 38, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

.emergency-contact h4 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.emergency-contact p {
    margin-bottom: 1.5rem;
}

/* =========================
   Footer
   ========================= */
.footer {
    background: linear-gradient(135deg, var(--foreground) 0%, #1f2937 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

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

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--primary);
    text-decoration: none;
}

/* Melhor adaptação ao tema */
[data-theme="dark"] .footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .footer-section ul li a:hover {
    color: var(--primary);
}

/* Modo claro - ajustar se necessário */
[data-theme="light"] .footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .footer-section ul li a:hover {
    color: var(--secondary);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--secondary);
    margin-top: 0.25rem;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.8);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

/* =========================
   Responsive Design
   ========================= */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-content,
    .insurance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    .nav-content {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0.75rem 0;
    }
    
    .nav-logo {
        flex-shrink: 0;
        min-width: 0;
    }
    
    .nav-logo .logo {
        width: 35px;
        height: 35px;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo-text {
    font-size: 1rem;
    line-height: 1.2;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
    max-width: none;
    }
    
    .btn-agendar {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .nav-content {
        padding: 0.75rem 0;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .btn-agendar {
        padding: 0.35rem 0.7rem;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .contact-card,
    .appointment-form,
    .info-card {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* =========================
   Animations
   ========================= */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out;
}

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

/* =========================
   Utility Classes
   ========================= */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

/* =========================
   Health Plans Section
   ========================= */
.health-plans {
    padding: 80px 0;
    background-color: var(--background);
    text-align: center;
}

.health-plans .section-header {
    margin-bottom: 60px;
}

.health-plans .section-header h2 {
    font-size: 2.8rem;
    color: var(--foreground);
    margin-bottom: 15px;
}

.health-plans .section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto 60px auto;
}

.plan-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.plan-card i[data-lucide="check-circle"] {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--primary);
    font-size: 24px;
}

.plan-card img {
    max-width: 120px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
}

.plan-card span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
}

.plan-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

/* Usando variáveis para cores das badges */
.plan-badge.premium {
    background-color: var(--plan-premium); /* Dourado */
}

.plan-badge.standard {
    background-color: var(--plan-standard); /* Azul */
}

.plan-badge.basic {
    background-color: var(--plan-basic); /* Cinza */
}

.not-found-plan {
    background-color: #f8faff;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .not-found-plan {
    background-color: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.not-found-plan h3 {
    font-size: 1.8rem;
    color: var(--foreground);
    margin-bottom: 15px;
}

.not-found-plan p {
    font-size: 1.05rem;
    color: var(--muted-foreground);
    margin-bottom: 30px;
    line-height: 1.6;
}

[data-theme="dark"] .not-found-plan p {
    color: var(--foreground);
    opacity: 0.9;
}

.not-found-plan .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.not-found-plan .cta-buttons .btn {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.not-found-plan .cta-buttons .btn-primary {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.not-found-plan .cta-buttons .btn-primary:hover {
    background-color: #1e4edc;
    border-color: #1e4edc;
}

.not-found-plan .cta-buttons .btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.not-found-plan .cta-buttons .btn-outline:hover {
    background-color: var(--primary);
    color: #fff;
}

/* =========================
   Responsive adjustments for Health Plans
   ========================= */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .plan-card {
        padding: 25px 15px;
    }

    .plan-card img {
        max-width: 100px;
    }

    .not-found-plan {
        padding: 30px;
    }

    .not-found-plan .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .not-found-plan .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Comentários para facilitar manutenção
   ========================= */
/*
    Seção: Botões
    Seção: Navegação
    Seção: Hero Section
    Seção: Sobre
    Seção: Serviços
    Seção: Convênios
    Seção: Agendamento
    Seção: Rodapé
    Seção: Utilitários
    Seção: Planos de Saúde
    Seção: Responsividade
*/


/* ===== SISTEMA DE AGENDAMENTO ONLINE ===== */
.booking-section {
    padding: 80px 0;
    background: var(--muted);
    position: relative;
    min-height: 100vh;
}

[data-theme="dark"] .booking-section {
    background: var(--background);
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
}

[data-theme="dark"] .booking-section::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23374151" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.05;
}

.booking-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.booking-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: 12px;
    color: var(--foreground);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    font-size: 1rem;
    min-height: 50px;
}

.booking-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.booking-nav-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white !important;
    box-shadow: var(--shadow-lg);
    font-weight: 700;
}

.booking-nav-btn.active:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white !important;
    transform: translateY(-2px);
}

.booking-nav-btn:focus,
.booking-nav-btn:active {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.booking-nav-btn.active:focus,
.booking-nav-btn.active:active {
    color: white !important;
    background: var(--primary);
    border-color: var(--primary);
}

/* Garantir visibilidade do texto em modo escuro */
[data-theme="dark"] .booking-nav-btn {
    color: var(--foreground);
}

[data-theme="dark"] .booking-nav-btn:hover {
    color: var(--primary);
}

[data-theme="dark"] .booking-nav-btn.active {
    color: white !important;
    background: var(--primary);
}

[data-theme="dark"] .booking-nav-btn.active:hover,
[data-theme="dark"] .booking-nav-btn.active:focus,
[data-theme="dark"] .booking-nav-btn.active:active {
    color: white !important;
}

.booking-nav-btn i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.booking-form-container {
    display: none;
    background: var(--background);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-medical);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    width: 100%; /* Adicionado para garantir que o max-width funcione */
}

.booking-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.booking-form-container.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

.booking-form {
    max-width: 100%;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    color: var(--foreground);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
}

.form-section h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
}

.form-description {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--muted);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    text-align: center;
}

/* Layout em colunas mais elegante */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Campos que devem ocupar toda a largura */
.form-row.full-width {
    grid-template-columns: 1fr;
}

/* Layout especial para campos relacionados */
.form-row.contact-info {
    grid-template-columns: 2fr 1fr;
}

.form-row.appointment-details {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--background);
    color: var(--foreground);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-group input:disabled,
.form-group select:disabled {
    background: var(--muted);
    color: var(--muted-foreground);
    cursor: not-allowed;
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.btn-danger {
    background: #ef4444;
    color: white;
    border: 2px solid #ef4444;
}

.btn-danger:hover {
    background: #dc2626;
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    color: white;
}

.btn-danger:active,
.btn-danger:focus {
    background: #b91c1c;
    color: white;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
    outline: none;
}

.booking-messages {
    margin-top: 2rem;
    min-height: 60px;
}

.message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

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

.message.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

[data-theme="dark"] .message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

[data-theme="dark"] .message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.message.warning {
    background: #fefce8;
    color: #a16207;
    border: 1px solid #fde68a;
}

[data-theme="dark"] .message.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.message.info {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

[data-theme="dark"] .message.info {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.message i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.whatsapp-redirect {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.whatsapp-redirect:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Responsividade do Sistema de Agendamento */
@media (max-width: 768px) {
    .navbar {
        background-color: rgba(255, 255, 255, 0.98);
        min-height: 60px; /* Altura mínima reduzida para mobile */
    }
    
    [data-theme="dark"] .navbar {
        background-color: rgba(17, 24, 39, 0.98);
    }
    
    .nav-content {
        padding: 0.75rem 0;
        min-height: 40px;
    }
    
    .nav-logo {
        max-width: 60%; /* Limitar largura em mobile */
    }
    
    .nav-logo .logo {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 0.9rem;
        max-width: 200px; /* Reduzir largura máxima em mobile */
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .nav-actions {
        gap: 0.5rem;
        flex-shrink: 0;
    }
    
    .theme-toggle-btn {
        width: 35px;
        height: 35px;
    }
    
    .theme-icon {
        width: 18px;
        height: 18px;
    }
    
    .btn-agendar {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 480px) {
    .nav-logo {
        max-width: 50%;
    }
    
    .logo-text {
        font-size: 0.8rem;
        max-width: 150px;
    }
    
    .nav-logo .logo {
        width: 30px;
        height: 30px;
    }
    
    .btn-agendar {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}

/* Responsividade para zoom alto */
@media (min-width: 1400px) {
    .nav-logo {
        max-width: 400px; /* Aumentar largura máxima em telas grandes */
    }
    
    .logo-text {
        max-width: 350px;
        font-size: 1.3rem;
    }
    
    .nav-logo .logo {
        width: 45px;
        height: 45px;
    }
}

.booking-section {
    padding: 60px 0;
}

.booking-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-nav-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .booking-form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .booking-form-container {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .booking-nav-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}



/* ===== BOTÃO DE REAGENDAMENTO ===== */
.reagendar-info {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--background);
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.reagendar-info p {
    margin-bottom: 1rem;
    color: var(--foreground);
    font-size: 1rem;
}

.btn-reagendar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.2);
}

.btn-reagendar:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    color: white;
    text-decoration: none;
}

.btn-reagendar:active,
.btn-reagendar:focus {
    background: #16a34a;
    color: white;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.3);
    outline: none;
    text-decoration: none;
}

.btn-reagendar i {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .reagendar-info {
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .btn-reagendar {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}



/* ===== RESPONSIVIDADE PARA FORMULÁRIOS ===== */
@media (max-width: 768px) {
    .booking-form-container {
        padding: 1.5rem;
        margin: 0 1rem;
        width: calc(100% - 2rem);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row.contact-info,
    .form-row.appointment-details {
        grid-template-columns: 1fr;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .booking-form-container {
        padding: 1rem;
        margin: 0 0.5rem;
        width: calc(100% - 1rem);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
}



.booking-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}