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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

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

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text p {
  font-size: 0.8rem;
  color: #666;
}

.nav-desktop {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #3b82f6;
  transform: scale(1.1);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #374151;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 1rem 0;
  animation: slideDown 0.3s ease-out;
}

.nav-mobile.active {
  display: block;
}

.nav-link-mobile {
  display: block;
  padding: 0.75rem 0;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link-mobile:hover {
  color: #3b82f6;
}

.mobile-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  margin-top: 1rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe, #e0e7ff, #fce7f3);
  position: relative;
  overflow: hidden;
}

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

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(139, 92, 246, 0.2)
  );
  animation: float 15s infinite linear;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.shape-2 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  animation-delay: -3s;
}
.shape-3 {
  width: 300px;
  height: 300px;
  bottom: 20%;
  left: 5%;
  animation-delay: -6s;
}
.shape-4 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 20%;
  animation-delay: -9s;
}
.shape-5 {
  width: 250px;
  height: 250px;
  top: 40%;
  left: 60%;
  animation-delay: -12s;
}
.shape-6 {
  width: 120px;
  height: 120px;
  bottom: 10%;
  right: 10%;
  animation-delay: -15s;
}

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

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: scaleIn 0.8s ease-out 0.4s both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: #374151;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  font-weight: 600;
}

.feature i {
  font-size: 1.2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 1s both;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Button Styles */
.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: scale(0.95);
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
}

.btn-secondary {
  border: 2px solid #3b82f6;
  color: #3b82f6;
  background: transparent;
}

.btn-secondary:hover {
  background: #3b82f6;
  color: white;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.2rem;
  width: 100%;
}

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

.btn-loading {
  display: none;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loading {
  display: inline;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f3f4f6;
  color: #374151;
}

.filter-btn:hover {
  transform: scale(1.05);
  background: #e5e7eb;
}

.filter-btn.active {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

.service-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #1f2937;
}

.service-content p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Especificações breves nos cards */
.service-specs-brief {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem 0;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 6px;
  color: #4b5563;
  font-size: 0.85rem;
}

.service-specs-brief li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-specs-brief strong {
  color: #1f2937;
  font-weight: 600;
}

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

.service-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #3b82f6;
}

.service-category {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, #dbeafe, #e0e7ff);
  color: #1e40af;
  border-radius: 50px;
}

/* Booking Section */
.booking {
  padding: 5rem 0;
  background: linear-gradient(135deg, #dbeafe, #e0e7ff);
}

.booking-form-container {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.booking-form {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.error-message {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.error-message.show {
  display: block;
}

.field-help {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.field-help small {
  color: #6b7280;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.field-help i {
  color: #3b82f6;
  font-size: 0.75rem;
}

.services-selection {
  margin-bottom: 2rem;
}

.services-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
  display: block;
  font-size: 0.9rem;
}

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

.transport-selection {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

.transport-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
}

.transport-label input[type="checkbox"] {
  margin-right: 1rem;
  transform: scale(1.2);
}

.transport-checkbox-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.transport-checkbox-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.transport-checkbox-name i {
  color: #3b82f6;
  font-size: 1.2rem;
}

.transport-checkbox-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3b82f6;
}

.transport-info {
  margin-top: 0.5rem;
  margin-left: 2.2rem;
}

.transport-info small {
  color: #6b7280;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.transport-info i {
  color: #3b82f6;
  font-size: 0.8rem;
}

.service-checkbox {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.service-checkbox:hover {
  background: #dbeafe;
  border-color: #93c5fd;
  transform: scale(1.02);
}

.service-checkbox input {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  accent-color: #3b82f6;
}

.service-checkbox-content {
  flex: 1;
}

.service-checkbox-name {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.service-checkbox-price {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Location System Styles */
.location-info {
  color: #6b7280;
  font-size: 0.85rem;
  font-weight: normal;
}

.location-input-container {
  position: relative;
}

.location-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #d1d5db;
  border-top: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.location-suggestions.show {
  display: block;
}

.location-suggestion-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s ease;
}

.location-suggestion-item:hover {
  background-color: #f9fafb;
}

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

.location-suggestion-item.selected {
  background-color: #dbeafe;
  color: #1e40af;
}

.coverage-area-info {
  margin-top: 8px;
  padding: 8px 12px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 6px;
  color: #1e40af;
  font-size: 0.85rem;
}

.coverage-area-info i {
  margin-right: 6px;
  color: #3b82f6;
}

/* Location Options Styles */
.location-options {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.location-option-btn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.location-option-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.location-option-btn i {
  font-size: 1rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 2% auto;
  padding: 0;
  border-radius: 16px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.close {
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #fbbf24;
}

.modal-body {
  padding: 20px;
}

/* Map Styles */
.map-container {
  margin-bottom: 20px;
}

.map {
  width: 100%;
  height: 400px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

/* Simple Map Styles */
.simple-map {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-background {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 12px;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.grid-cell {
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.grid-cell:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.map-locations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-location-marker {
  position: absolute;
  width: 24px;
  height: 24px;
  background: #ef4444;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
}

.map-location-marker:hover {
  background: #dc2626;
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.map-location-marker i {
  color: white;
  font-size: 12px;
}

.map-instructions-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  text-align: center;
  font-size: 0.85rem;
}

.map-instructions-overlay p {
  margin: 0;
}

.map-instructions-overlay i {
  margin-right: 6px;
  color: #fbbf24;
}

.map-instructions {
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
  color: #1e40af;
}

.map-instructions p {
  margin: 5px 0;
  font-size: 0.9rem;
}

.map-instructions i {
  margin-right: 8px;
  color: #3b82f6;
}

.map-selection-info {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 15px;
}

#selectedLocationInfo {
  margin-bottom: 15px;
  padding: 10px;
  background: white;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.confirm-location-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.confirm-location-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
}

.confirm-location-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

/* Location Status Styles */
.location-status {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  padding: 12px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-status.success {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.location-status.error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.location-status.info {
  background: #f0f9ff;
  border-color: #bae6fd;
  color: #1e40af;
}

/* Price Calculator Styles */
.price-calculator-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 16px;
  border: 2px solid #e2e8f0;
}

.price-calculator-placeholder {
  text-align: center;
  color: #64748b;
  padding: 2rem;
}

.price-calculator-placeholder i {
  font-size: 3rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.price-calculator-placeholder p {
  font-size: 1rem;
  margin: 0;
}

.price-breakdown {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.price-breakdown h4 {
  color: #1e293b;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
}

.price-item:last-of-type {
  border-bottom: none;
}

.price-item span:first-child {
  color: #475569;
  font-weight: 500;
}

.price-item span:last-child {
  color: #1e293b;
  font-weight: 600;
}

.price-item.total {
  border-top: 2px solid #e2e8f0;
  border-bottom: none;
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.price-item.total span:last-child {
  color: #059669;
  font-size: 1.2rem;
}

.price-note {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #fef3c7;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #fde68a;
}

.price-note small {
  color: #92400e;
  font-size: 0.85rem;
}

.form-submit {
  text-align: center;
}

.form-messages {
  margin-top: 2rem;
}

.success-message,
.error-message-box {
  display: none;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  animation: fadeInUp 0.6s ease-out;
}

.success-message {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border: 2px solid #10b981;
  color: #065f46;
}

.success-message.show {
  display: block;
}

.success-message i {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 1rem;
}

.success-message h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.error-message-box {
  background: #fef2f2;
  border: 2px solid #ef4444;
  color: #991b1b;
}

.error-message-box.show {
  display: block;
}

.error-message-box i {
  font-size: 2rem;
  color: #ef4444;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb, #dbeafe);
}

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

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out both;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

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

.contact-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: #6b7280;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  color: #3b82f6;
  transform: scale(1.05);
}

.contact-card p {
  color: #6b7280;
}

/* Estilos específicos para redes sociais */
.contact-card .fab {
  font-size: 2rem;
}

.contact-card:nth-child(5) .contact-icon {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.contact-card:nth-child(6) .contact-icon {
  background: #1877f2;
}

.cta-section {
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.cta-card {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.cta-card h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}

.cta-card p {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

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

.footer-logo .logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
}

.footer-logo .logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-section p {
  color: #d1d5db;
  line-height: 1.6;
}

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

.footer-section ul li {
  color: #d1d5db;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-section ul li:hover {
  color: #60a5fa;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact a,
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: #60a5fa;
  transform: translateX(5px);
}

.schedule {
  margin-top: 1rem;
}

.schedule p {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.footer-divider {
  border: none;
  height: 1px;
  background: #374151;
  margin: 3rem 0 2rem;
}

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

.footer-bottom p {
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-bottom i {
  color: #ef4444;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-desktop,
  .contact-info {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

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

  .footer-logo .logo-icon {
    width: 40px;
    height: 40px;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

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

  .services-checkboxes {
    grid-template-columns: 1fr;
  }

  .price-calculator-section {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .price-breakdown {
    padding: 1rem;
  }

  .price-item {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }

  .location-suggestions {
    max-height: 150px;
  }

  .coverage-area-info {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .location-options {
    flex-direction: column;
    gap: 8px;
  }

  .location-option-btn {
    padding: 12px 15px;
    font-size: 1rem;
  }

  .modal-content {
    width: 95%;
    margin: 5% auto;
  }

  .map {
    height: 300px;
  }

  .booking-form {
    padding: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Animation Delays for Staggered Effects */
.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}
.service-card:nth-child(7) {
  animation-delay: 0.7s;
}
.service-card:nth-child(8) {
  animation-delay: 0.8s;
}

.contact-card:nth-child(1) {
  animation-delay: 0.1s;
}
.contact-card:nth-child(2) {
  animation-delay: 0.2s;
}
.contact-card:nth-child(3) {
  animation-delay: 0.3s;
}
.contact-card:nth-child(4) {
  animation-delay: 0.4s;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Hidden by default */
.hidden {
  display: none !important;
}

/* Fade animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

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

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}

.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}

/* Galeria de Imagens e Modais */
.image-gallery {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.gallery-image.active {
  opacity: 1;
}

.gallery-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.indicator.active {
  background: #3b82f6;
}

.view-details-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(59, 130, 246, 0.9);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.service-image:hover .view-details-btn {
  opacity: 1;
}

/* Modais */
.image-modal,
.service-details-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: fadeIn 0.3s ease;
}

.image-modal .modal-content,
.service-details-modal .modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

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

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: #666;
  cursor: pointer;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: #f3f4f6;
  color: #333;
}

.modal-image-container {
  position: relative;
  max-width: 800px;
  max-height: 600px;
}

.modal-image-container img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

.modal-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.nav-btn {
  background: rgba(59, 130, 246, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.nav-btn:hover:not(:disabled) {
  background: rgba(59, 130, 246, 1);
  transform: scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.modal-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
}

.modal-info h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.modal-info p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.image-counter {
  font-size: 14px;
  opacity: 0.7;
}

/* Modal de Detalhes do Serviço */
.service-details-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
  max-width: 1000px;
}

.service-details-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.detail-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.detail-image:hover,
.detail-image.active {
  border-color: #3b82f6;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.service-details-info h2 {
  font-size: 32px;
  color: #1f2937;
  margin-bottom: 16px;
}

.service-price-large {
  font-size: 28px;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 8px;
}

.service-category-large {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-description,
.service-features {
  margin-bottom: 24px;
}

/* Especificações no modal de detalhes */
.service-specs {
  margin-bottom: 24px;
}

.service-specs h3 {
  font-size: 20px;
  color: #1f2937;
  margin-bottom: 12px;
}

.service-specs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-specs li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #4b5563;
}

.service-specs li strong {
  color: #111827;
}

.service-description h3,
.service-features h3 {
  font-size: 20px;
  color: #1f2937;
  margin-bottom: 12px;
}

.service-description p {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

.service-features ul {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 16px;
  color: #4b5563;
}

.service-features li i {
  color: #10b981;
  margin-right: 12px;
  font-size: 14px;
}

/* Responsive para modais */
@media (max-width: 768px) {
  .service-details-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .service-details-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .detail-image {
    height: 140px;
  }

  .modal-navigation {
    padding: 0 10px;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .service-details-info h2 {
    font-size: 24px;
  }

  .service-price-large {
    font-size: 24px;
  }
}

/* ==========================================
   BOTÃO FLUTUANTE DE WHATSAPP
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

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

.whatsapp-float i {
  animation: pulse 2s infinite;
}

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

/* Mobile */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}
