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

html {
  scroll-behavior: smooth; /* Scroll suave para todo el sitio */
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #F7F8FB;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

/* Estilo para íconos de Material Icons */
.material-icons {
  font-size: 24px;
  width: 24px;
  height: 24px;
}

/* Navbar */
.navbar {
  width: 100vw;
  height: 110px;
  background-color: #FFFFFF;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  display: flex;
  justify-content: center;
}

.navbar-container {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  width: 190px;
  height: 60px;
}

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-item {
  position: relative;
  margin: 0 8px;
}

.navbar-item a {
  font-size: 14px;
  font-weight: 500;
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar-item a:hover {
  color: #3073AA;
}

.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #FFFFFF;
  list-style: none;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  font-size: 14px;
  padding: 8px 20px;
  display: block;
  white-space: nowrap;
}

.navbar-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-btn {
  width: 80px;
  height: 40px;
  background-color: transparent;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: #1A1A1A;
  cursor: pointer;
}

.lang-btn img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.call-btn {
  width: 40px;
  height: 40px;
  background-color: #3073AA;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.call-btn .material-icons {
  color: #FFFFFF;
  font-size: 16px;
}

.call-btn:hover {
  background-color: #265d8c;
}

.pay-btn {
  width: 100px;
  height: 40px;
  background-color: #FF0000;
  border: none;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.pay-btn:hover {
  background-color: #e60000;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 340px;
  background-color: #F7F8FB;
  margin-bottom: 0;
  position: relative;
  overflow: visible;
}

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

.hero-text {
  max-width: 50%;
  text-align: center;
}

h1 {
  font-size: 56px;
  font-weight: 700;
  color: #3073AA;
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.2;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  color: #1A1A1A;
  margin: 20px 0;
}

p {
  font-size: 18px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
}

.highlight {
  color: #FF0000;
  font-weight: 700;
}

#animated-subio {
  display: inline-block;
  transition: color 0.5s ease;
}

.form-group {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.phone-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 320px;
  height: 50px;
}

.phone-container .material-icons {
  position: absolute;
  left: 10px;
  font-size: 24px;
  color: #CCCCCC;
}

.phone-input {
  font-size: 18px;
  padding: 10px 10px 10px 40px;
  border: none;
  border-radius: 12px;
  color: #1A1A1A;
  width: 100%;
  height: 50px;
  background-color: #FFFFFF;
  letter-spacing: 2px;
}

.phone-input::placeholder {
  color: #E0E0E0;
  letter-spacing: 2px;
}

.btn-red {
  width: 200px;
  height: 50px;
  background-color: #FF0000;
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-left: 15px;
}

.btn-red:hover {
  background-color: #e60000;
}

a {
  color: #FF0000;
  text-decoration: underline;
  font-weight: 400;
}

.hero-image img {
  width: 574px;
  height: 757px;
  object-fit: cover;
  vertical-align: bottom;
}

/* Nubes */
.cloud {
  position: absolute;
  color: #FFFFFF;
  opacity: 0.8;
  z-index: -1;
  pointer-events: none;
}

.cloud-1 {
  width: 150px;
  height: 200px;
  font-size: 160px;
  right: -160px;
  top: 150px;
  animation: float-1 5s ease-in-out infinite;
}

.cloud-2 {
  width: 120px;
  height: 160px;
  font-size: 130px;
  left: -200px;
  top: 100px;
  animation: float-2 7s ease-in-out infinite;
}

.cloud-3 {
  width: 100px;
  height: 130px;
  font-size: 100px;
  left: -100px; /* Centrada debajo del texto */
  top: 600px; /* Debajo del texto y formulario */
  animation: float-3 6s ease-in-out infinite;
}

/* Animaciones de flotación individuales */
@keyframes float-1 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

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

/* Imagen flotante en Testimonials */
.testimonials-left {
  position: relative; /* Asegura que sea el contenedor relativo */
}

.floating-image {
  position: absolute;
  top: 330px; /* A 100px desde la parte superior de testimonials-left */
  right: 50px; /* A 150px desde el borde derecho de testimonials-left */
  width: 150px; /* Ancho de la imagen */
  z-index: 1; /* Encima de la imagen de fondo */
}

.floating-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04); /* Dropshadow igual a las otras imágenes */
  animation: float-image 4s ease-in-out infinite; /* Animación de flotación leve */
}

/* Animación de flotación para la imagen */
@keyframes float-image {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px); /* Movimiento leve de 5px */
  }
}


/* Benefits Section */
.benefits {
  width: 100vw;
  height: 120px;
  background-color: #ECEEF3;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: -1px;
}

.benefits-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 340px;
  display: flex;
  justify-content: space-between;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  text-align: left;
  flex: 1;
  margin: 0 15px;
}

.benefit-item .material-icons {
  font-size: 48px;
  color: #3073AA;
  margin-right: 25px;
  line-height: 1;
  margin-top: 16px;
}

.benefit-item h3 {
  font-size: 24px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.2;
}

/* Video Section */
.video {
  width: 100%;
  background-color: #F7F8FB;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}

.video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 340px;
  text-align: center;
}

.video-container h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.2;
  margin-bottom: 20px;
}

.video-container p {
  font-size: 18px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
  margin-bottom: 60px;
}

.video-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.video-left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-placeholder {
  width: 100%;
  max-width: 560px;
  height: 315px;
  background-color: #E0E0E0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 500;
}

.video-placeholder iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px; /* Bordes redondeados */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04); /* Dropshadow */
}

.video-right {
  width: 50%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: 0;
}

.video-right p {
  font-size: 18px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
  margin-bottom: 20px;
}

.video-right .bold-text {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 20px;
}

.video-right .btn-red {
  width: 200px;
  height: 50px;
  background-color: #FF0000;
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-left: 0;
  padding-left: 0;
  align-self: flex-start;
}

.video-right .btn-red:hover {
  background-color: #e60000;
}

/* Video Section - Redondear bordes del iframe */
.video-left iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
  border-radius: 12px; /* Bordes redondeados a 12px */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04); /* Mantengo el dropshadow consistente */
  border: none; /* Elimina cualquier borde por defecto */
}

/* Formulario Section */
.formulario {
  width: 100vw;
  background-color: #FBFCFE;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.formulario-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 340px;
  text-align: center;
}

.formulario-container h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.formulario-container p {
  font-size: 18px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
  margin-bottom: 40px;
}

.formulario-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.formulario-left {
  width: 50%;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.formulario-left h3 {
  font-size: 24px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 20px;
}

.formulario-left p {
  font-size: 18px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
  margin-bottom: 30px;
}

.formulario-left .bold-red {
  font-weight: 700;
  color: #FF0000;
}

.form-inputs {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 48%;
}

.input-label {
  font-size: 16px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 5px;
  line-height: 1;
}

.input-group {
  position: relative;
  width: 224px;
  display: flex;
  flex-direction: column;
}

.input-wrapper {
  position: relative;
  height: 50px;
}

.input-group .material-icons {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #CCCCCC;
}

.input-group .form-input {
  font-size: 18px;
  padding: 10px 10px 10px 40px;
  border: none;
  border-radius: 12px;
  color: #1A1A1A;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
}

.input-group .form-input::placeholder {
  color: #E0E0E0;
}

.input-group .dropdown-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #CCCCCC;
  display: block;
  pointer-events: none;
}

.form-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
}

.form-footer .btn-red {
  width: 200px;
  height: 50px;
  background-color: #FF0000;
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-footer .btn-red:hover {
  background-color: #e60000;
}

.form-footer .call-now {
  font-size: 18px;
  font-weight: 400;
  color: #1A1A1A;
  margin: 0;
}

.form-footer .blue-link {
  color: #3073AA;
  text-decoration: underline;
  font-weight: 400;
}

.formulario-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.formulario-right .image-placeholder {
  width: 462px;
  height: 520px;
}

.formulario-right .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px; /* Bordes redondeados */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04); /* Dropshadow */
}

/* Features Section */
.features {
  width: 100vw;
  background-color: #F7F8FB;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.features-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 340px;
  text-align: center;
}

.features-container h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.features-container p {
  font-size: 18px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
  margin-bottom: 40px;
}

.features-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.features-left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-left .image-placeholder {
  width: 416px;
  height: 416px;
}

.features-left .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px; /* Bordes redondeados */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04); /* Dropshadow */
}

.features-right {
  width: 50%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 0;
}

.feature-item {
  margin-bottom: 30px;
}

.feature-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.feature-header .material-icons {
  font-size: 32px;
  color: #3073AA;
  margin-right: 15px;
}

.feature-header h3 {
  font-size: 24px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.2;
  margin: 0;
}

.feature-item p {
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
  margin: 0;
}

.features-right .btn-red {
  width: 200px;
  height: 50px;
  background-color: #FF0000;
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-left: 0;
  margin-top: 20px;
}

.features-right .btn-red:hover {
  background-color: #e60000;
}

/* Risk Section */
.risk {
  width: 100vw;
  background-color: #FBFCFE;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.risk-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 340px;
  text-align: center;
}

.risk-container h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.risk-container p {
  font-size: 18px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
  margin-bottom: 40px;
}

.risk-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.risk-left {
  width: 50%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 0;
}

.risk-item {
  margin-bottom: 30px;
}

.risk-item h3 {
  font-size: 24px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.2;
  margin-bottom: 10px;
}

.risk-item p {
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
  margin: 0;
}

.risk-left .btn-red {
  width: 200px;
  height: 50px;
  background-color: #FF0000;
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-left: 0;
  margin-top: 20px;
}

.risk-left .btn-red:hover {
  background-color: #e60000;
}

.risk-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.risk-right .image-placeholder {
  width: 416px;
  height: 416px;
}

.risk-right .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px; /* Bordes redondeados */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04); /* Dropshadow */
}

/* Testimonials Section */
.testimonials {
  width: 100vw;
  background-color: #F7F8FB;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.testimonials-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 340px;
  text-align: center;
}

.testimonials-container h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.testimonials-container p {
  font-size: 18px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
  margin-bottom: 40px;
}

.testimonials-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 60px;
}

.testimonials-left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonials-left .image-placeholder {
  width: 416px;
  height: 416px;
}

.testimonials-left .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px; /* Bordes redondeados */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04); /* Dropshadow */
}

.testimonials-right {
  width: 50%;
  text-align: left;
  display: flex;
  flex-direction: column;
  /*justify-content: center;*/
  margin-left: 0;
}

.testimonials-right h3 {
  font-size: 24px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.2;
  margin-bottom: 10px;
}

.testimonials-right p {
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonials-right .btn-red {
  width: 200px;
  height: 50px;
  background-color: #FF0000;
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-left: 0;
}

.testimonials-right .btn-red:hover {
  background-color: #e60000;
}

.testimonials-cards {
  text-align: center;
}

.testimonials-cards p {
  font-size: 18px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
  margin-bottom: 30px;
}

.cards-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  width: 360px;
  height: 240px;
  background-color: #FFFFFF;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
}

.stars {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.stars .material-icons {
  font-size: 24px;
  color: #FACA00;
}

.card p {
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
  margin: 0;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-photo {
  width: 56px;
  height: 56px;
  background-color: #E0E0E0;
  border-radius: 50%;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 18px;
  font-weight: 500;
  color: #1A1A1A;
}

.user-car {
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
}

.testimonials-cards h3 {
  font-size: 24px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.2;
  margin-bottom: 20px;
}

.call-to-action {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.call-to-action .btn-red {
  width: 200px;
  height: 50px;
  background-color: #FF0000;
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.call-to-action .btn-red:hover {
  background-color: #e60000;
}

.call-to-action .call-now {
  font-size: 18px;
  font-weight: 400;
  color: #1A1A1A;
  margin: 0;
}

.call-to-action .blue-link {
  color: #3073AA;
  text-decoration: underline;
  font-weight: 400;
}

/* Referral Section */
.referral {
  width: 100vw;
  background-color: #FBFCFE;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.referral-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 340px;
  text-align: center;
}

.referral-container h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.referral-container p {
  font-size: 18px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
  margin-bottom: 40px;
}

.referral-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.referral-left {
  width: 50%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 0;
}

.referral-item {
  margin-bottom: 30px;
}

.referral-item h3 {
  font-size: 24px;
  font-weight: 500;
  color: #1A1A1A;
  line-height: 1.2;
  margin-bottom: 10px;
}

.referral-item p {
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 1.5;
  margin: 0;
}

.referral-left .btn-red {
  width: 200px;
  height: 50px;
  background-color: #FF0000;
  border: none;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-left: 0;
}

.referral-left .btn-red:hover {
  background-color: #e60000;
}

.referral-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.referral-right .image-placeholder {
  width: 416px;
  height: 416px;
}

.referral-right .image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px; /* Bordes redondeados */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04); /* Dropshadow */
}

/* FinalCall Section */
.finalcall {
  width: 100vw; /* Fondo a todo el ancho */
  background-color: #3073AA; /* Fondo azul */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-top: 30px; /* Sin padding para control total de la altura */
}

.finalcall-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 340px; /* Márgenes base del sitio */
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* Alinea el texto y la foto desde arriba */
  padding: 0px; /* Padding solo dentro del contenedor */
}

.finalcall-left {
  width: 50%;
  text-align: left;
  color: #FFFFFF; /* Texto blanco aplicado globalmente */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Alinea el contenido desde arriba */
  padding-top: 60px; /* Espacio superior para alinear con la foto */
}

.finalcall-left h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.highlights-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
}

.highlight-item .material-icons {
  font-size: 32px;
  color: #FFFFFF;
  margin-right: 15px;
  margin-top: 2px;
}

.highlight-item h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  color: #FFFFFF;
}

.finalcall-left p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.buttons {
  display: flex;
  gap: 20px;
}

.btn-blue {
  width: 200px;
  height: 50px;
  background-color: #FFFFFF;
  border: none;
  border-radius: 12px;
  color: #3073AA;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-blue:hover {
  background-color: #E0E0E0;
}

.btn-outline {
  width: 200px;
  height: 50px;
  background-color: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.finalcall-right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Alinea la foto desde arriba */
}

.finalcall-image {
  width: 100%;
  max-width: 416px; /* Tamaño consistente */
  height: auto;
  display: block;
  margin: 0; /* Sin márgenes adicionales */
}

/* Animaciones de entrada para imágenes */
.image-placeholder img {
  transition: transform 0.5s ease-in-out; /* Animación suave solo para entrada */
}

.image-placeholder.right img {
  transform: translateX(100%); /* Fuera a la derecha por defecto */
}

.image-placeholder.left img {
  transform: translateX(-100%); /* Fuera a la izquierda por defecto */
}

.image-placeholder.visible img {
  transform: translateX(0); /* Entra a su posición final */
}

/* Responsividad */
@media (max-width: 1200px) {
  .navbar-container {
    margin: 0 20px;
    flex-direction: column;
    padding: 10px 0;
  }

  .navbar-logo {
    margin-bottom: 10px;
  }

  .navbar-menu {
    flex-direction: column;
    align-items: center;
  }

  .navbar-item {
    margin: 10px 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
  }

  .navbar-buttons {
    margin-top: 10px;
  }

  .hero {
    margin: 0 20px;
    height: auto;
    padding: 40px 0;
  }

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

  .hero-text {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-image img {
    width: 100%;
    height: auto;
    max-width: 574px;
  }

  .benefits-container {
    margin: 0 20px;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
    margin: 0 10px;
  }
}