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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #f1eeee;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========= HEADER ========= */
.header.fixed.scroll-transparent {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 42, 78, 0.95);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
  padding: 0;
  height: auto;
}

.header.fixed.scroll-transparent.scrolled {
  background: rgba(0, 42, 78, 0.8);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  background: transparent;
  transition: all 0.4s ease;
  height: 70px;
}

.logo {
  flex-shrink: 0;
  height: 45px;
  display: flex;
  align-items: center;
}

.logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-list a:hover {
  color: #C8831C;
}

/* ========= APPOINTMENT CONTAINER ========= */
.appointment-container {
  padding-top: 90px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 90px);
  padding-bottom: 2rem;
}

.confirmation-main {
  padding-top: 90px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 90px);
}

/* ========= FLOATING BOX - SEM EFEITOS ROTATÓRIOS ========= */
.floating-box {
  background: linear-gradient(135deg, #00254E 0%, #1F3C5D 50%, #003366 100%);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  max-width: 1000px;
  width: 90%;
  animation: floatIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #f0f0f0;
  text-align: center;
  position: relative;
  margin: 2rem auto;
}

/* REMOVIDO O ::before COM EFEITO ROTATIVO */

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

.confirmation-card.floating-box {
  text-align: center;
}

.confirmation-card.floating-box h2 {
  color: #C8831C;
}

.confirmation-card.floating-box p {
  color: #e0e0e0;
}

/* ========= STEPS ========= */
.step {
  display: none;
  position: relative;
  z-index: 1;
}

.step.active {
  display: block;
  animation: fadeInStep 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInStep {
  from { 
    opacity: 0; 
    transform: translateY(25px) scale(0.98); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

/* ========= TÍTULOS - SEM EFEITO NEON ========= */
h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #C8831C;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
  /* REMOVIDO text-shadow (efeito neon) */
}

.subtext {
  color: #e8e8e8;
  margin-bottom: 35px;
  font-size: 1.15rem;
  text-align: center;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0.95;
  position: relative;
  z-index: 2;
}
/* ========= SERVICE CARDS - BRILHO METÁLICO COM ANIMAÇÃO ========= */
.service-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  justify-items: center;
  position: relative;
  z-index: 2;
}

.service-card {
  background: #fff;
  border: 3px solid #e0e0e0;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
  width: 100%;
  max-width: 320px;
  min-height: 340px;
  overflow: hidden;
}

/* Efeito de brilho dourado metálico - ANIMADO E CONTIDO */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(245, 219, 124, 0.4) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: -100% 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
  border-radius: 21px;
}

.service-card:hover::before {
  opacity: 1;
  animation: brilho-metalico-card 1.2s ease-out;
}

@keyframes brilho-metalico-card {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

/* Estados do card */
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #C8831C;
  box-shadow: 0 15px 40px rgba(200, 131, 28, 0.25);
}

.service-card.selected {
  border-color: #C8831C;
  box-shadow: 0 0 0 4px rgba(200, 131, 28, 0.2), 
              0 15px 40px rgba(200, 131, 28, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #fffaf0 100%);
  transform: translateY(-8px) scale(1.03);
}

/* ÍCONES - Sempre visíveis */
.service-card i {
  font-size: 3.5rem;
  color: #00254E;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 37, 78, 0.2));
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}

.service-card:hover i {
  color: #C8831C;
  transform: scale(1.15) rotate(5deg);
  filter: drop-shadow(0 4px 12px rgba(200, 131, 28, 0.4));
}

.service-card.selected i {
  color: #C8831C;
  transform: scale(1.2);
  filter: drop-shadow(0 6px 15px rgba(200, 131, 28, 0.5));
}

.service-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  color: #00254E;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 1.05rem;
  color: #555;
  word-wrap: break-word;
  line-height: 1.5;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

/* ========= BUTTONS ========= */
.btn-primary {
  background: linear-gradient(135deg, #004aad, #0060e1, #0077ff);
  color: #fff;
  border: none;
  padding: 18px 40px;
  border-radius: 14px;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(0, 74, 173, 0.4);
  position: relative;
  overflow: hidden;
  font-family: 'Quicksand', sans-serif;
  z-index: 10;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 74, 173, 0.5);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary:disabled {
  background: linear-gradient(135deg, #ccc, #aaa);
  color: #666;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  opacity: 0.6;
}

.btn-secondary {
  background: linear-gradient(135deg, #e0e0e0, #c0c0c0);
  color: #333;
  border: none;
  padding: 18px 40px;
  border-radius: 14px;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  font-family: 'Quicksand', sans-serif;
  z-index: 10;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
  z-index: -1;
}

.btn-secondary:hover::before {
  left: 100%;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.hidden {
  display: none !important;
}

/* ========= DATE PICKER ========= */
.date-picker-container {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 5;
}

.date-picker-container label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #C8831C;
  font-family: 'Quicksand', sans-serif;
}

#date {
  padding: 14px 20px;
  border: 2px solid #ddd;
  border-radius: 14px;
  font-size: 1.05rem;
  min-width: 250px;
  background: #fff;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: #333;
  position: relative;
  z-index: 6;
}

#date:focus {
  border-color: #004aad;
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.15);
  transform: scale(1.02);
}

/* ========= TIME SLOTS - COM ANIMAÇÃO DE SURGIMENTO ========= */
.time-slots {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 5;
}

.time-slot {
  border: 2px solid #e0e0e0;
  border-radius: 14px;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInSlot 0.4s ease forwards;
}

@keyframes fadeInSlot {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.time-slot:hover {
  border-color: #004aad;
  background: #f0f7ff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 74, 173, 0.2);
}

.time-slot.selected {
  background: linear-gradient(135deg, #004aad, #0060e1);
  color: #fff;
  border-color: #004aad;
  box-shadow: 0 6px 20px rgba(0, 74, 173, 0.4);
  transform: translateY(-3px) scale(1.05);
}

/* ========= ACTIONS ========= */
.actions {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

/* ========= FORM ========= */
.personal-form {
  max-width: 550px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 5;
}

.form-group {
  position: relative;
  margin-bottom: 28px;
  z-index: 6;
}

.form-group input {
  width: 100%;
  padding: 18px 16px;
  border: 2px solid #ddd;
  border-radius: 14px;
  font-size: 1.05rem;
  background: #fff;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  color: #333;
  position: relative;
  z-index: 7;
}

.form-group input:focus {
  border-color: #004aad;
  box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.12);
  outline: none;
  transform: scale(1.01);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  top: -12px;
  left: 16px;
  font-size: 0.9rem;
  color: #004aad;
  background: #fff;
  padding: 0 8px;
  border-radius: 8px;
  font-weight: 600;
}

.form-group label {
  position: absolute;
  top: 18px;
  left: 16px;
  color: #888;
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  z-index: 8;
}

/* ========= CONFIRMATION ========= */
.confirmation-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
  position: relative;
  z-index: 5;
}

.summary-card {
  background: #fff;
  border: 3px solid #C8831C;
  border-radius: 20px;
    padding: 35px;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 8px 25px rgba(200, 131, 28, 0.2);
  position: relative;
  z-index: 6;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.summary-item strong {
  color: #00254E;
  font-weight: 700;
}

.summary-item span {
  color: #555;
  font-weight: 500;
}

.summary-item.price {
  margin-top: 25px;
  font-weight: bold;
  border-top: 3px solid #C8831C;
  padding-top: 18px;
  font-size: 1.4rem;
  color: #C8831C;
  border-bottom: none;
}

.small-text {
  color: #ccc;
  font-size: 0.95rem;
  margin-top: 15px;
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 5;
}

/* ========= BTN GOLD MAIN ========= */
.btn-gold-main {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #C8831C, #D4A574, #C8831C);
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(200, 131, 28, 0.4);
  font-weight: 700;
  font-size: 1.2rem;
  font-family: 'Quicksand', sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.btn-gold-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
  z-index: -1;
}

.btn-gold-main:hover::before {
  left: 100%;
}

.btn-gold-main:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(200, 131, 28, 0.5);
}

/* ========= FLATPICKR THEME ========= */
.flatpickr-calendar {
  background: #fff;
  border: 2px solid #004aad;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 74, 173, 0.3);
  font-family: 'Roboto', sans-serif;
  z-index: 9999 !important;
}

.flatpickr-day {
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.flatpickr-day.selected {
  background: #004aad !important;
  color: #fff !important;
  border-color: #004aad !important;
  box-shadow: 0 4px 12px rgba(0, 74, 173, 0.3);
}

.flatpickr-day:hover {
  background: #f0f7ff;
  color: #004aad;
  transform: scale(1.05);
}

.flatpickr-monthDropdown-months, .flatpickr-current-month {
  color: #004aad;
  font-weight: 600;
}

.flatpickr-prev-month, .flatpickr-next-month {
  color: #C8831C;
}

.flatpickr-prev-month:hover, .flatpickr-next-month:hover {
  color: #D4A574;
}

/* ========= RESPONSIVIDADE ========= */
@media (max-width: 968px) {
  .nav-container {
    padding: 0.75rem 1.5rem;
  }
  
  .nav-list {
    gap: 1rem;
  }
  
  .nav-list a {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0.5rem 1rem;
    height: 60px;
  }
  
  .logo {
    height: 40px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .nav-list {
    gap: 0.75rem;
  }
  
  .nav-list a {
    font-size: 0.85rem;
  }
  
  .service-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .floating-box {
    padding: 2rem 1.5rem;
    width: 95%;
    border-radius: 24px;
  }
  
  .appointment-container,
  .confirmation-main {
    padding-top: 80px;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .subtext {
    font-size: 1rem;
  }
  
  .service-card {
    max-width: 100%;
    min-height: 320px;
    padding: 2rem 1.5rem;
  }
  
  .service-card i {
    font-size: 3rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 16px 32px;
    font-size: 1.1rem;
  }
  
  .actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .actions button {
    width: 100%;
  }
  
  .summary-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0.5rem 0.75rem;
    height: 55px;
  }
  
  .logo {
    height: 35px;
  }
  
  .logo img {
    height: 35px;
  }
  
  .nav-list {
    gap: 0.5rem;
  }
  
  .nav-list a {
    font-size: 0.75rem;
  }
  
  .floating-box {
    padding: 1.5rem 1rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .service-card {
    padding: 1.5rem 1rem;
    min-height: 280px;
  }
  
  .service-card i {
    font-size: 2.5rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
  }
}