:root {
  --primary: #05064c;
  --primary-dark: #030335;
  --secondary: #3f51b5;
  --secondary-dark: #303f9f;
  --accent: #ffc107;
  --dark: #212121;
  --light: #fafafa;
  --gray: #9e9e9e;
  --success: #4caf50;
  --danger: #f44336;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge-custom {
  background-color: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--dark);
}

.hero-text {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  align-items: center;
}

.hero-rating {
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--accent);
  margin-bottom: 5px;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.floating-card {
  position: absolute;
  background-color: white;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.floating-card-1 {
  top: 10%;
  right: 0;
}

.floating-card-2 {
  bottom: 10%;
  left: 0;
}

.floating-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(5, 6, 76, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.floating-card-icon.success {
  background-color: rgba(76, 175, 80, 0.1);
  color: var(--success);
}

.floating-card-text h6 {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}

.floating-card-text p {
  margin: 0;
  font-size: 12px;
  color: var(--gray);
}

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

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(5, 6, 76, 0.3);
}

.btn-whatsapp {
  background: linear-gradient(90deg, #25d366 0%, #128c7e 100%);
  border: none;
  color: white;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  color: white;
}

.btn-light {
  background-color: white;
  color: var(--dark);
  border: none;
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(5, 6, 76, 0.2);
}
