* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #eef5fb;
  color: #0f172a;
}

/* HERO */

.hero {
  position: relative;
  background: linear-gradient(
    135deg,
    #004aad 0%,
    #0075e8 65%,
    #00a3ff 100%
  );

  padding: 14px 20px 120px;

  color: white;

  overflow: hidden;
}

.hero::after {

  content: "";

  position: absolute;

  left: -8%;
  right: -8%;

  bottom: -64px;

  height: 120px;

  background: #eef5fb;

  border-radius: 50% 50% 0 0;
}

.hero-inner {

  position: relative;

  z-index: 2;

  text-align: center;
}

.logo {

  width: 220px;

  max-width: 70%;
}

.hero-subtitle {

  max-width: 760px;

  margin: 22px auto 0;

  padding: 0 12px;

  font-size: 22px;

  line-height: 1.2;

  font-weight: 900;

  color: white;
}

/* MAIN */

.main {

  position: relative;

  z-index: 5;

  width: min(100% - 32px, 1280px);

  margin: -78px auto 70px;
}

/* PLANS */

.plans {
  position: relative;
}

.plans-track {

  width: min(100%, 1180px);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(4, minmax(220px, 1fr));

  gap: 18px;
}

/* CARD */

.plan-card {

  min-width: 0;

  max-width: 100%;

  background: white;

  border-radius: 28px;

  overflow: hidden;

  border: 1px solid #dbe7f3;

  box-shadow:
    0 6px 18px rgba(15, 45, 85, 0.06);

  transition:
  box-shadow .25s ease;
}

.plan-card:hover {

  transform: none;

  box-shadow:
    0 6px 18px rgba(15, 45, 85, 0.06);
}

.plan-card.selected {

  border-color: #0075e8;

  box-shadow:
    0 10px 26px rgba(15, 45, 85, 0.14);
}

.plan-content {

  display: flex;

  flex-direction: column;

  min-height: 470px;

  text-align: center;
}

/* CARD TOP */

.plan-top {

  min-height: 92px;

  padding: 24px 14px;

  background:
    linear-gradient(
      135deg,
      #0057c9 0%,
      #0075e8 100%
    );

  border-radius: 0 0 24px 24px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.plan-card h2 {

  margin: 0;

  color: white;

  font-size: 22px;

  line-height: 1;

  font-weight: 900;

  white-space: nowrap;
}

/* =========================
   FOOTBALL TOGGLE
========================= */

.hidden-check{
  display:none;
}

.football-toggle{

  position:relative;

  overflow:hidden;

  width:calc(100% - 40px);

  margin:18px auto 0;

  min-height:74px;

  display:flex;

  align-items:center;

  border-radius:22px;

  background:
    linear-gradient(
      135deg,
      #f8fbff,
      #dbeafe
    );

  border:2px solid #b9d8ff;

  cursor:pointer;

  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.football-toggle:hover{

  transform:translateY(-2px);

  box-shadow:
    0 10px 25px rgba(0,117,232,.12);
}

.football-toggle.active{

  background:
    linear-gradient(
      135deg,
      #0075e8,
      #00a3ff
    );

  border-color:#8fd0ff;

  box-shadow:
    0 14px 34px rgba(0,117,232,.28);

  transform:scale(1.02);
}

.football-toggle::before{

  content:"";

  position:absolute;

  inset:0;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,.22),
      transparent
    );

  transform:translateX(-120%);
}

.football-toggle.active::before{

  animation:footballShine .8s ease;
}

@keyframes footballShine{

  to{
    transform:translateX(120%);
  }

}

.football-content{

  position:relative;

  z-index:2;

  width:100%;

  display:grid;

  grid-template-columns:46px 1fr;

  align-items:center;

  padding:14px 18px;
}

.football-icon{

  width:46px;

  height:46px;

  border-radius:50%;

  background:white;

  display:flex;

  align-items:center;

  justify-content:center;

  font-size:22px;

  flex-shrink:0;

  box-shadow:
    0 6px 18px rgba(0,0,0,.08);
}

.football-text{

  display:flex;

  flex-direction:column;

  justify-content:center;

  align-items:center;

  text-align:center;

  width:100%;

  padding-right:46px;
}

.football-text strong{

  color:#003b8e;

  font-size:18px;

  font-weight:900;

  letter-spacing:.5px;

  line-height:1.1;

  text-shadow:
    0 1px 1px rgba(255,255,255,.35);
}

.football-text small{

  margin-top:6px;

  color:#334155;

  font-size:13px;

  font-weight:800;

  line-height:1.2;
}

.football-toggle.active strong,
.football-toggle.active small{

  color:white;

  text-shadow:none;
}

.football-placeholder {

  width: calc(100% - 40px);

  min-height: 74px;

  margin: 18px auto 0;
}

/* PRICE */

.price {

  text-align: center;

  margin: 30px 0 22px;

  color: #005ecb;

  font-size: 38px;

  font-weight: 900;

  letter-spacing: -2px;
}

/* BUTTONS */

.btn-select,
.btn-submit {

  border: none;

  border-radius: 14px;

  padding: 18px;

  background:
    linear-gradient(
      135deg,
      #ff3131,
      #e60000
    );

  color: white;

  font-size: 15px;

  font-weight: 900;

  cursor: pointer;

  white-space: nowrap;

  text-transform: uppercase;

  transition:
    transform .2s ease;
}

.btn-select:hover,
.btn-submit:hover {

  transform: scale(1.02);
}

.btn-select {

  width: calc(100% - 40px);

  margin: 0 auto 24px;
}

/* BENEFITS */

.benefits {

  margin: auto 0 0;

  padding: 24px 22px 28px;

  background: #f7fbff;

  border-top: 1px solid #e8eef5;

  list-style: none;

  display: grid;

  gap: 12px;

  text-align: left;
}

.benefits li {

  position: relative;

  padding-left: 24px;

  color: #43576f;

  font-size: 14px;

  line-height: 1.5;

  font-weight: 700;
}

.benefits li::before {

  content: "✓";

  position: absolute;

  left: 0;

  color: #006fe6;

  font-weight: 900;
}

/* FORM */

.hidden {
  display: none;
}

.form-section {
  margin-top: 38px;
}

.form-card {

  max-width: 780px;

  margin: auto;

  background: white;

  border-radius: 28px;

  padding: 34px;

  border: 1px solid #dbe7f3;

  box-shadow:
    0 8px 22px rgba(15, 45, 85, 0.05);
}

.form-card h2 {

  margin: 0 0 22px;

  font-size: 30px;

  font-weight: 900;

  color: #003b7a;
}

.summary {

  background: #eef6ff;

  border-radius: 18px;

  padding: 18px;

  margin-bottom: 22px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 12px;
}

.summary span {

  font-weight: 700;

  color: #4b5d73;
}

.summary strong {

  color: #005ecb;

  font-size: 28px;

  white-space: nowrap;
}

.form-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 14px;
}

.form-grid input {

  width: 100%;

  padding: 16px;

  border: 1px solid #d5e1ee;

  border-radius: 14px;

  font-size: 16px;

  outline: none;
}

.form-grid input:focus {

  border-color: #006fe6;
}

.form-grid input:nth-child(5) {

  grid-column: 1 / -1;
}

.btn-submit {

  width: 100%;

  margin-top: 18px;
}

/* SUCCESS */

.sending-box {

  margin-top: 24px;

  background: #eef5ff;

  border: 1px solid #c7dcff;

  color: #005ecb;

  padding: 18px;

  border-radius: 18px;

  text-align: center;

  font-weight: 800;
}

.success-box {

  margin-top: 28px;

  background: #ffffff;

  border: 1px solid #dce9f7;

  border-radius: 28px;

  padding: 38px 30px;

  text-align: center;

  box-shadow:
    0 12px 35px rgba(15, 45, 85, 0.08);

  animation:
    successAppear .45s ease;
}

.success-icon {

  width: 78px;

  height: 78px;

  margin: 0 auto 24px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #00c853,
      #00a844
    );

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 38px;

  font-weight: 900;

  box-shadow:
    0 10px 24px rgba(0, 200, 83, 0.25);
}

.success-box h3 {

  font-size: 42px;

  line-height: 1.1;

  font-weight: 900;

  color: #003b7a;

  margin: 0 0 22px;
}

.success-plan {

  font-size: 28px;

  line-height: 1.3;

  font-weight: 900;

  color: #005ecb;

  margin-bottom: 16px;
}

.success-price {

  font-size: 68px;

  line-height: 1;

  font-weight: 900;

  color: #005ecb;
}

.success-divider {

  width: 100%;

  height: 1px;

  background: #e5eef8;

  margin: 30px 0;
}

.success-text {

  font-size: 22px;

  line-height: 1.6;

  color: #4b5d73;

  font-weight: 700;
}

.success-footer {

  margin-top: 26px;

  font-size: 18px;

  font-weight: 900;

  color: #005ecb;
}

.error-box {

  margin-top: 24px;

  background: #fff1f1;

  border: 1px solid #ffcaca;

  color: #b30000;

  padding: 18px;

  border-radius: 18px;

  text-align: center;

  font-weight: 800;
}

@keyframes successAppear {

  from {

    opacity: 0;

    transform:
      translateY(16px)
      scale(0.97);
  }

  to {

    opacity: 1;

    transform:
      translateY(0)
      scale(1);
  }
}

/* SLIDER */

.slider-arrow,
.slider-dots {
  display: none;
}

/* MOBILE */

@media (max-width: 768px) {

  .hero {

    padding: 14px 14px 70px;
  }

  .hero::after {

    left: -10%;
    right: -10%;

    bottom: -38px;

    height: 70px;
  }

  .logo {

    width: 110px;
  }

  .hero-subtitle {

    max-width: 260px;

    margin: 10px auto 0;

    font-size: 13px;

    line-height: 1.2;

    font-weight: 800;
  }

  .main {

    width: 100%;

    max-width: 420px;

    margin: -8px auto 40px;

    padding: 0 12px;
  }

  .plans {

    width: 100%;

    padding: 0 26px;
  }

  .plans-track {

    width: 100%;

    display: flex;

    gap: 0;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;

    touch-action: pan-x;
  }

  .plans-track::-webkit-scrollbar {
    display: none;
  }

  .plan-card {

    flex: 0 0 100%;

    max-width: 100%;

    scroll-snap-align: center;

    border-radius: 22px;
    
  }
.plan-card{
  overflow:hidden;
  background:white;
}
.plan-content {

  display: flex;

  flex-direction: column;

  min-height: 470px;

  text-align: center;

}
.plan-content{
  min-height:auto;
}

.price{
  margin:14px 0 10px;
}

.btn-select{
  margin:0 auto 10px;
}

.benefits{
  margin-top:0;
}

.price{
  margin-top:auto;
}

  .plan-top {

    min-height: 58px;

    padding: 14px 10px;

    border-radius: 0 0 18px 18px;
  }

  .plan-card h2 {

    font-size: 18px;
  }

  .football-toggle {

    width: calc(100% - 28px);

    min-height: 58px;

    border-radius: 18px;
  }

  .football-content {

    gap: 10px;

    padding: 10px 14px;
  }

  .football-icon {

    width: 36px;

    height: 36px;

    font-size: 18x;
  }

 .football-text strong{
  font-size:14px
}

.football-text small{
  font-size:9px;
}

  .football-placeholder {

    width: calc(100% - 28px);

    min-height: 58px;

    margin-top: 12px;
  }

  .price {

    margin: 18px 0 16px;

    font-size: 28px;

    letter-spacing: -1px;
  }

  .btn-select {

    width: calc(100% - 28px);

    height: 44px;

    margin: 0 auto 16px;

    padding: 0;

    border-radius: 12px;

    font-size: 13px;
  }

  .benefits {

    padding: 16px;

    gap: 8px;
  }

  .benefits li {

    font-size: 13px;

    line-height: 1.5;

    padding-left: 18px;
  }

  .slider-arrow {

    display: flex;

    align-items: center;

    justify-content: center;

    position: absolute;

    top: 46%;

    transform: translateY(-50%);

    width: 32px;

    height: 32px;

    border: none;

    border-radius: 999px;

    background: #ffffff;

    color: #006fe6;

    font-size: 20px;

    font-weight: 900;

    box-shadow:
      0 6px 18px rgba(0,0,0,.15);

    z-index: 20;
  }

  .slider-arrow-left {
    left: 0;
  }

  .slider-arrow-right {
    right: 0;
  }

  .slider-dots {

    display: flex;

    justify-content: center;

    gap: 6px;

    margin-top: 12px;
  }

  .dot {

    width: 6px;

    height: 6px;

    border: none;

    border-radius: 999px;

    background: #c9d9eb;
  }

  .dot.active {

    width: 18px;

    background: #0075e8;
  }

  .form-card {

    padding: 20px;

    border-radius: 22px;
  }

  .form-grid {

    grid-template-columns: 1fr;
  }

  .form-grid input:nth-child(5) {

    grid-column: auto;
  }

  .summary {

    flex-direction: column;

    align-items: flex-start;
  }

  .success-box {

    padding: 20px 14px;

    border-radius: 22px;
  }

  .success-icon {

    width: 54px;

    height: 54px;

    font-size: 26px;

    margin-bottom: 14px;
  }

  .success-box h3 {

    font-size: 18px;

    line-height: 1.15;

    margin-bottom: 10px;
  }

  .success-plan {

    font-size: 14px;

    line-height: 1.2;

    margin-bottom: 10px;
  }

  .success-price {

    font-size: 28px;
  }

  .success-divider {

    margin: 16px 0;
  }

  .success-text {

    font-size: 12px;

    line-height: 1.5;
  }

  .success-footer {

    margin-top: 12px;

    font-size: 11px;
  }
}
.btn-again{

  margin-top:24px;

  border:none;

  border-radius:14px;

  padding:14px 20px;

  background:
    linear-gradient(
      135deg,
      #0075e8,
      #0057c9
    );

  color:white;

  font-size:14px;

  font-weight:900;

  cursor:pointer;
}
/* =========================
   WELCOME SCREEN
========================= */
.welcome-screen{

  position:fixed;

  inset:0;

  z-index:99999;

  background:
    linear-gradient(
      135deg,
      #004aad,
      #1ea0ff
    );

  display:flex;

  align-items:center;

  justify-content:center;

  padding:20px;

  overflow-y:auto;
}
.welcome-content{

  width:100%;


  margin:auto;
}
.welcome-content{
  background:white;
  max-width:700px;
  width:100%;
  padding:18px;
  border-radius:30px;
  text-align:center;
  box-shadow:0 20px 60px rgba(0,0,0,.25);
}

.welcome-logo{
  width:190px;
  max-width:80%;
  margin-bottom:15px;
}

.welcome-content h1{
  color:#004aad;
  margin:0;
  font-size:34px;
  font-weight:900;
  margin-bottom:10px;
}

.welcome-main{
  margin:18px 0;
  font-size:20px;
  color:#334155;
  line-height:1.6;
  font-weight:700;
}

.welcome-services{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin:18px 0;
}

.service-item{
  background:#eef6ff;
  padding:14px;
  border-radius:14px;
  color:#004aad;
  font-weight:800;
}

.welcome-message{
  background:#fff7e6;
  color:#b45309;
  padding:16px;
  border-radius:14px;
  margin-bottom:25px;
  font-weight:900;
}

.welcome-btn{
  border:none;
  border-radius:16px;
  padding:18px 35px;
  background:linear-gradient(
    135deg,
    #ff3131,
    #e60000
  );
  color:white;
  font-size:18px;
  font-weight:900;
  cursor:pointer;
}

@media(max-width:768px){

  .welcome-content{
    padding:18px;
  }

  .welcome-content h1{
    font-size:28px;
  }

  .welcome-services{
    grid-template-columns:1fr;
  }

  .welcome-btn{
    width:100%;
  }

}
@media (max-width:768px){

  .welcome-logo{
    width:110px;
    margin-bottom:8px;
  }

  .welcome-content h1{
    font-size:18px;
    line-height:1.2;
    margin:8px 0;
  }

  .welcome-main{
    font-size:13px;
    line-height:1.4;
    margin-bottom:12px;
  }

  .welcome-services{
    gap:6px;
    margin:12px 0;
  }

  .service-item{
    padding:8px;
    font-size:12px;
    border-radius:8px;
  }

  .welcome-message{
    font-size:12px;
    padding:10px;
    margin:12px 0;
  }

  .welcome-btn{
    padding:12px;
    font-size:13px;
    margin-top:10px;
  }

}
.welcome-btn{
    transition:all .25s ease;
}

.welcome-btn:hover{
    transform:scale(1.05);
}

.welcome-btn:active{
    transform:scale(.97);
}
.welcome-content{
  background:rgba(255,255,255,.94);

  backdrop-filter:blur(12px);

  border-radius:30px;

  box-shadow:
  0 25px 60px rgba(0,0,0,.25);

  max-width:700px;
}
.support-btn{

  position:fixed;

  right:20px;

  bottom:20px;

  z-index:99999;

  background:#0057c9;

  color:#fff;

  padding:14px 22px;

  border-radius:999px;

  font-weight:800;

  cursor:pointer;

  box-shadow:
    0 12px 30px rgba(0,0,0,.18);

  transition:.3s;
}

.support-btn:hover{

  transform:translateY(-3px);
}

.chat-menu{

  position:fixed;

  right:20px;

  bottom:80px;

  width:300px;

  background:white;

  border-radius:18px;

  overflow:hidden;

  display:none;

  z-index:99999;

  box-shadow:
    0 20px 50px rgba(0,0,0,.15);
}

.chat-menu.show{

  display:block;

  animation:chatOpen .25s ease;
}

.chat-header{

  background:#0057c9;

  color:white;

  text-align:center;

  padding:16px;

  font-weight:900;
}

.chat-option{

  display:block;

  padding:16px;

  text-decoration:none;

  color:#1e293b;

  font-weight:700;

  border-bottom:1px solid #edf2f7;

  transition:.2s;
}

.chat-option:hover{

  background:#f8fbff;

  padding-left:22px;
}

.chat-reclamo{

  color:#d60000;

  font-weight:900;
}

@keyframes chatOpen{

  from{

    opacity:0;

    transform:translateY(15px);
  }

  to{

    opacity:1;

    transform:translateY(0);
  }
}