* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #153abf;
  --primary-orange: #ff7f00;
  --text-dark: #1a1a1a;
  --text-light: #a3a3a3;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ==================== NAVBAR ==================== */
.navbar {
  position: sticky;
  top: 0;
  background: var(--primary-blue);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  width: 150px;
  height: 60px;
  object-fit: cover;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.nav-links.mobile-open a {
  color: var(--primary-blue);
}

.nav-links.mobile-open a:hover {
  color: #0f2aa3;
}

.cta-link {
  background: var(--primary-orange);
  color: white !important;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.navbar .logo img {
  height: 40px;
  width: auto;
  display: block;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

/* ==================== HERO SECTION ==================== */
.hero {
  padding: 100px 20px;
  min-height: 600px;
  text-align: center;
  background:
    url("assets/bg-azul.png") center/cover no-repeat,
    linear-gradient(135deg, #002e7e 0%, #0052cc 50%, #003ba3 100%);
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -43%);
  width: 170vw;
  height: 300%;
  background: url("assets/pin_outline.png") center/contain no-repeat;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 140, 0, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 140, 0, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-weight: 300;
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

.location-pin {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.location-pin img {
  width: 100px;
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ==================== BUTTONS ==================== */
.btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.hero .btn-primary {
  padding: 0.8rem 3rem;
  font-size: 1.1rem;
  background: var(--primary-orange);
  color: white;
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.3);
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0 auto;
}

.hero .btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.hero .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.hero .btn-primary:hover {
  background: #e07b00;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 140, 0, 0.4);
}

.btn-primary {
  background: var(--primary-blue);
  color: white;
}

.btn-primary:hover {
  background: #003d99;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--primary-orange);
  color: white;
}

.btn-secondary:hover {
  background: #e07b00;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ==================== BENEFÍCIOS SECTION ==================== */
.beneficios {
  padding: 60px 20px;
  background: white;
}

.beneficios h2,
.caracteristicas h2,
.depoimentos h2,
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--text-dark);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.beneficio-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.beneficio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.beneficio-card .icon {
  width: 50px;
  height: 50px;
  margin: auto;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  fill: blue;
}

.beneficio-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-blue);
}

.beneficio-card p {
  color: var(--text-light);
}

/* ==================== CARACTERÍSTICAS SECTION ==================== */
.caracteristicas {
  padding: 60px 20px;
  background: var(--bg-light);
}

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

.caracteristica-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-orange);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.caracteristica-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(4px);
}

.caracteristica-item .numero {
  font-size: 2rem;
  font-weight: lighter;
  color: var(--primary-orange);
}

.caracteristica-item h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.caracteristica-item p {
  color: var(--text-light);
  font-weight: 300;
}

/* ==================== DEPOIMENTOS SECTION ==================== */
.depoimentos {
  padding: 60px 20px;
  background: white;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.depoimento-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  border-top: 3px solid var(--primary-blue);
  box-shadow: var(--shadow);
}

.depoimento-card .stars {
  color: var(--primary-orange);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.depoimento-card .depoimento-texto {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.depoimento-autor {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.depoimento-autor strong {
  color: var(--primary-blue);
}

.depoimento-autor span {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f3fb3 0%, #002d8f 100%);
  color: white;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.cta-copy {
  max-width: 640px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #ffcc7e;
  font-size: 0.8rem;
}

.cta-copy h2 {
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: #fff;
  text-align: left;
}

.cta-copy p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 560px;
}

.cta-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 1.25rem;
  text-align: left;
}

.highlight-item strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: white;
}

.highlight-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.cta-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.cta-card-label {
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #aad4ff;
  font-size: 0.75rem;
}

.cta-card h3 {
  font-size: 2rem;
  margin-bottom: 1.75rem;
  line-height: 1.1;
}

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

.cta-form input {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.cta-form button {
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: #ff7f00;
  color: white;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cta-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 127, 0, 0.35);
}

.cta-note {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 40px 20px 80px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-orange);
}

.footer-section p {
  color: #ccc;
  margin-bottom: 0.5rem;
}

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

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

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 2rem;
  text-align: center;
  color: #999;
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  text-decoration: none;
}

.whatsapp-btn img {
  width: 100%;
}

.whatsapp-btn:hover {
  background: #1eaa50;
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

.container .title-section {
  color: var(--primary-blue);
}

.container .title-section span {
  color: var(--primary-orange);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .hero {
    padding: 100px 20px;
    min-height: 650px;
  }

  .location-pin img {
    width: 150px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 600px;
    margin: auto;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .caracteristicas-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-form {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .cta-form button {
    grid-column: 3;
  }
}

@media (min-width: 1024px) {
  .beneficios-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .depoimentos-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 120px 20px;
    min-height: 700px;
  }

  .hero-content {
    text-align: left;
    flex: 1;
    z-index: 1;
  }

  .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }

  .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
  }

  .hero-visual {
    flex: 1;
    margin-top: 0;
    display: flex;
    justify-content: center;
  }

  .caracteristica-item {
    padding: 1.5rem 2rem;
  }

  .footer {
    padding: 40px 20px 30px 20px;
  }
}
