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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #334155;
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.hero {
  padding: 0;
  overflow: hidden;
}

.hero-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.hero-image {
  flex: 0 0 65%;
  width: 100%;
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-card {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
  padding-left: 5px;
  padding-right: 5px;
}

.hero-tarjetas {
  width: 160px;
  margin-bottom: 12px;
}

.hero-text {
  text-align: center;
  font-size: 13.5px;
  color: #1a365d;
  line-height: 1.5;
}
.hero-text strong {
  font-weight: 700;
}

.hero-highlight {
  color: #00c1d4;
  font-weight: 700;
}

@media (max-width: 480px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-image {
    flex: none;
    max-width: 260px;
  }
  .hero-card {
    flex: none;
    padding-top: 0;
    padding-left: 0;
  }
}
.steps {
  display: flex;
  justify-content: center;
  background: #ffffff;
  padding: 32px 20px 28px;
  position: relative;
  margin-top: 50px;
}

.steps-header {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 5px;
}

.steps-title {
  background-color: #003865;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 9px 28px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 20px;
}

.steps-container {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  justify-content: center;
  border: 1px solid #003865;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 40px;
  padding: 20px 40px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  padding: 12px 12px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 30px;
  min-width: 40px;
  background-color: #00c1d4;
  color: #ffffff;
  font-weight: 800;
  font-size: 20px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 10px;
}

.step-text {
  font-size: 16.5px;
  color: #334155;
  line-height: 1.5;
}

.step-highlight {
  color: #00c1d4;
  font-weight: 700;
}

@media (max-width: 480px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
}
.prizes {
  padding: 32px 20px;
}

.prizes-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.prizes-image {
  flex: 0 0 40%;
  max-width: 260px;
}
.prizes-image img {
  width: 100%;
}

.prizes-text {
  flex: 1 1 auto;
  max-width: 340px;
}
.prizes-text p {
  font-size: 15px;
  color: #1a365d;
  line-height: 1.55;
}
.prizes-text strong {
  font-weight: 800;
  color: #1a365d;
}

@media (max-width: 480px) {
  .prizes-inner {
    flex-direction: column;
    text-align: center;
  }
  .prizes-image {
    max-width: 220px;
  }
}
.form-section {
  background: #ffffff;
  padding: 40px 20px 48px;
}

.form-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.form-title {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: #1a365d;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group select {
  width: 100%;
  padding: 12px 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #334155;
  background: #ffffff;
  border: 1px solid #ffb81c;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 10px;
}
.form-group input[type=text]::-moz-placeholder, .form-group input[type=email]::-moz-placeholder, .form-group input[type=tel]::-moz-placeholder, .form-group select::-moz-placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.form-group input[type=text]::placeholder,
.form-group input[type=email]::placeholder,
.form-group input[type=tel]::placeholder,
.form-group select::placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=tel]:focus,
.form-group select:focus {
  border-color: #00c1d4;
  box-shadow: 0 0 0 2px rgba(0, 193, 212, 0.1);
}
.form-group input[type=text].is-invalid,
.form-group input[type=email].is-invalid,
.form-group input[type=tel].is-invalid,
.form-group select.is-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.08);
}
.form-group input[type=text].is-valid,
.form-group input[type=email].is-valid,
.form-group input[type=tel].is-valid,
.form-group select.is-valid {
  border-color: #16a34a;
}

.error-msg {
  display: none;
  font-size: 11.5px;
  color: #dc2626;
  margin-top: 4px;
  padding-left: 2px;
  font-weight: 500;
}
.error-msg.active {
  display: block;
}

.select-wrapper {
  position: relative;
}
.select-wrapper select {
  padding-right: 38px;
  cursor: pointer;
  color: #94a3b8;
}
.select-wrapper select:valid, .select-wrapper select.has-value {
  color: #334155;
}

.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #64748b;
  pointer-events: none;
}

.form-group-checkbox {
  margin-top: 16px;
  margin-bottom: 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 12.5px;
  color: #334155;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checkbox-label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.checkbox-label input[type=checkbox]:checked + .checkbox-custom {
  background-color: #00c1d4;
  border-color: #00c1d4;
}
.checkbox-label input[type=checkbox]:checked + .checkbox-custom::after {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.checkbox-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid #00c1d4;
  border-radius: 3px;
  transition: all 0.2s ease;
  background: #ffffff;
}

.terms-link {
  color: #1a365d;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}
.terms-link:hover {
  color: #00c1d4;
}

.form-cta-text {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #1a365d;
  margin: 26px 0 20px;
}

.btn-submit {
  display: block;
  margin: 0 auto;
  padding: 11px 44px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: #00c1d4;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: #00c1d4;
  letter-spacing: 0.3px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 10px;
}
.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: #00c1d4;
}
.btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 193, 212, 0.3);
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.btn-submit.loading {
  pointer-events: none;
  position: relative;
  color: transparent;
}
.btn-submit.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.message-container {
  display: none;
  text-align: center;
  padding: 36px 20px;
}
.message-container.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}
.success-icon svg {
  width: 100%;
  height: 100%;
}

.success-title {
  font-size: 20px;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 8px;
}

.success-text {
  font-size: 14px;
  color: #64748b;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 480px) {
  .form-title {
    font-size: 22px;
  }
  .form-cta-text {
    font-size: 17px;
  }
  .btn-submit {
    width: 100%;
    padding: 12px 20px;
  }
}
.tv-banner {
  background-color: #f6f6f6;
  padding: 28px 20px;
}

.tv-banner-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.tv-banner-inner p {
  font-size: 24px;
  color: #1a365d;
}
.tv-banner-inner strong {
  font-weight: 700;
}

.tv-logo-inline {
  display: inline-block;
  height: 54px;
  width: auto;
  vertical-align: middle;
  margin: 0 3px;
}

@media (max-width: 480px) {
  .tv-banner-inner p {
    font-size: 14px;
  }
  .tv-logo-inline {
    height: 18px;
  }
}
.footer {
  background: #003865;
  padding: 32px 20px;
}

.footer-inner {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-phones {
  display: flex;
  gap: 24px;
  align-items: center;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: white;
  transition: color 0.2s ease;
}
.phone-link:hover {
  color: #00c1d4;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  color: white;
}

@media (max-width: 480px) {
  .footer-phones {
    flex-direction: column;
    gap: 8px;
  }
}/*# sourceMappingURL=main.css.map */