/* ===================================
   LeoBarber - Página de Agendamento
   CSS Otimizado para Performance e SEO
   =================================== */

/* === Variables === */
:root {
    --primary-color: #c59d5f;
    --primary-hover: #d4ab6f;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-muted: #888888;
    --border-color: rgba(197, 157, 95, 0.2);
    --success-color: #4caf50;
    --error-color: #f44336;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.2);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === Accessibility === */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === Header === */
.header-minimal {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: inline-block;
    transition: var(--transition);
}

.logo-link:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.btn-back-home {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: transparent;
    color: var(--text-gray);
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-back-home:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.btn-back-home svg {
    width: 20px;
    height: 20px;
}

/* === Hero Inline === */
.booking-hero-inline {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.inline-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.inline-hero-content h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.inline-hero-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.hero-cta {
    background: var(--primary-color);
    color: #000;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197, 157, 95, 0.3);
}

/* === Trust Signals === */
.trust-signals {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0 2rem;
    padding: 1rem 1.5rem;
    background: rgba(197, 157, 95, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--primary-color);
    flex-shrink: 0;
    font-size: 1.1rem;
}

/* === Progress Steps === */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 2rem;
    max-width: 700px;
    padding: 0 1rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.progress-step.active .step-number {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(197, 157, 95, 0.5);
}

.step-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
}

.progress-step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    margin: 0 1rem;
    position: relative;
    top: -15px;
}

/* === Booking Container === */
.booking-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 2rem;
}

.booking-step {
    display: none;
    animation: fadeInUp 0.4s ease-out;
}

.booking-step.active {
    display: block;
}

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

/* === Membership Section === */
.membership-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(6, 6, 6, 0.95));
}
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    align-items: center;
}
.membership-media img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(197, 157, 95, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    display: block;
}
.membership-content .overline {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.6rem;
}
.membership-content h2 {
    color: var(--text-light);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}
.membership-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.membership-benefits {
    margin: 0 0 1.5rem 1rem;
    padding-left: 0;
    color: #dcdcdc;
}
.membership-benefits li {
    margin-bottom: 0.4rem;
}
.membership-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.5rem;
    border-radius: 999px;
    background: var(--primary-color);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}
.membership-cta:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
    .membership-section {
        padding: 55px 0;
    }
    .membership-grid {
        gap: 24px;
    }
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* === Category Sections === */
.category-section {
    margin-bottom: 0.5rem;
}

.category-section:last-child {
    margin-bottom: 0.25rem;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(197, 157, 95, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.category-header:hover {
    background: rgba(197, 157, 95, 0.15);
    border-color: var(--primary-color);
}

.category-header:active {
    transform: scale(0.98);
}

.category-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.categoria-icone-circle {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(197, 157, 95, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: inset 0 0 15px rgba(197, 157, 95, 0.15);
    font-size: 1.1rem;
}

.categoria-icone-circle i {
    pointer-events: none;
}

.category-toggle-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
    line-height: 1;
}

/* === Services Grid === */
.servicos-grid-booking {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 0 0.5rem;
}

.servico-card-booking {
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.servico-card-booking:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.servico-card-booking.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(197, 157, 95, 0.1) 0%, rgba(197, 157, 95, 0.05) 100%);
}

.servico-card-booking.selected::after {
    content: '✓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.servico-nome {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.servico-descricao {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.servico-detalhes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.servico-preco {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.servico-duracao {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* === Vídeo Experiência === */
.experience-video {
    background: radial-gradient(circle at top, rgba(197, 157, 95, 0.08), rgba(10, 10, 10, 0.95));
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
}

.video-copy .overline {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.video-copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--text-light);
    margin-bottom: 1rem;
}

.video-copy p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.btn-video {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.8rem;
    background: var(--primary-color);
    color: #000;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-video:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197, 157, 95, 0.3);
}

.video-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.video-frame video {
    width: 100%;
    display: block;
}

.video-blur {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(197, 157, 95, 0.2), rgba(10, 10, 10, 0.4));
    filter: blur(20px);
    z-index: 0;
    pointer-events: none;
}

.video-frame video {
    position: relative;
    z-index: 1;
    border-radius: 20px;
}

/* === Booking Summary === */
.booking-summary {
    background: rgba(197, 157, 95, 0.1);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.summary-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.summary-item span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.summary-item strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.booking-summary .summary-highlight {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

/* === Date & Time Selection === */
.date-time-container {
    margin-bottom: 2rem;
}

.date-selector {
    margin-bottom: 2rem;
}

.date-selector label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.date-input {
    width: 100%;
    padding: 1rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.date-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.1);
}

.date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* === Horarios Grid === */
.horarios-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.horario-item {
    padding: 1rem;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--text-gray);
}

.horario-item:hover:not(.disabled) {
    border-color: var(--primary-color);
    background: rgba(197, 157, 95, 0.1);
    transform: scale(1.05);
}

.horario-item.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    box-shadow: 0 0 15px rgba(197, 157, 95, 0.5);
}

.horario-item.disabled,
.horario-item.passado {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    position: relative;
}

.horario-item.disabled:hover,
.horario-item.passado:hover {
    border-color: rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    transform: none;
}

.horario-item.passado::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(244, 67, 54, 0.5);
    transform: translateY(-50%);
}

/* === Review Section === */
.booking-review {
    margin-bottom: 2rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.review-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.review-label {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.review-value {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.review-item.highlight {
    background: rgba(197, 157, 95, 0.1);
    margin: 1rem -2rem 0;
    padding: 1rem 2rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.review-item.highlight .review-value {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* === Form === */
.form-dados-modern {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
}

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

.form-group-modern label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-group-modern input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group-modern input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.1);
}

.form-group-modern input::placeholder {
    color: var(--text-muted);
}

/* === Buttons === */
.btn-next,
.btn-confirmar {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-next:hover:not(:disabled),
.btn-confirmar:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 157, 95, 0.3);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-back {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back:hover {
    background: var(--bg-card);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* === Benefits Section === */
.benefits-section {
    margin: 3rem 0 2rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: rgba(197, 157, 95, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.benefit-card:hover {
    background: rgba(197, 157, 95, 0.08);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

/* === FAQ Section === */
.faq-section {
    background: var(--bg-card);
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

.faq-item h3 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* === Footer === */
.footer-minimal {
    background: var(--bg-card);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.footer-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-info a:hover {
    color: var(--primary-hover);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 157, 95, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.copyright a {
    color: var(--primary-color);
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* === Modal === */
.modal-modern {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.modal-modern.active {
    display: flex;
}

.modal-content-modern {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    max-width: 550px;
    width: 100%;
    text-align: center;
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    margin-bottom: 1.5rem;
}

.modal-icon-success {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
}

.modal-header h2 {
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 700;
}

.modal-body {
    margin-bottom: 2rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.btn-modal-close {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.btn-modal-close:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Calendar Buttons */
.calendar-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-add-calendar,
.btn-add-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}

.btn-add-calendar {
    background: var(--primary-color);
    color: #000;
    border: none;
}

.btn-add-calendar:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 157, 95, 0.3);
}

.btn-add-google {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
}

.btn-add-google:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-add-calendar svg,
.btn-add-google svg {
    flex-shrink: 0;
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* === Loading Spinner === */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.loading-spinner::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 4px solid rgba(197, 157, 95, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* === Responsive Design === */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }

    .btn-back-home span {
        display: none;
    }

    .inline-hero-content {
        padding: 0 1rem;
    }

    .trust-signals {
        gap: 1rem;
        margin: 1rem 0 1.5rem;
        padding: 0.75rem 1rem;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    .trust-item i {
        font-size: 1rem;
    }

    .booking-progress {
        margin: 1.5rem auto 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .progress-line {
        margin: 0 0.5rem;
    }

    .step-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .servicos-grid-booking {
        grid-template-columns: 1fr;
    }

    .experience-video {
        padding: 1.5rem;
    }

    .btn-video {
        width: 100%;
    }

    .horarios-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

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

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

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

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .booking-summary {
        flex-direction: column;
        gap: 1rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-item.highlight {
        margin: 1rem -1.5rem 0;
        padding: 1rem 1.5rem;
    }

    .form-dados-modern {
        padding: 1.5rem;
    }
}

/* === Print Styles === */
@media print {
    .header-minimal,
    .breadcrumb-nav,
    .whatsapp-float,
    .btn-back,
    .btn-next,
    .btn-confirmar {
        display: none;
    }
}
.inline-title {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
