@charset "UTF-8";
/* CSS REGISTRO */
.registration-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 164, 228, .12), transparent 30%), linear-gradient(135deg, #ffffff, #f5f8fc);
}
.registration-grid {
  position: relative;
  display: grid;
  grid-template-columns:
    repeat(2, 1fr);
  gap: 50px;
  max-width: 950px;
  margin: auto;
}
.registration-card {
  text-align: center;
  padding: 60px 45px 50px;
  background:
    background:white;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(29, 45, 92, .12);
  border:
    1px solid rgba(29, 45, 92, .08);
}
.registration-card * {
  text-align: center;
}
.register-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    rgba(0, 164, 228, .12);
  color: #00A4E4;
  font-size: 2rem;
}
.registration-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, #ffffff, #f4f8fc);
}
.registration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.member-register {
  border-top:
    6px solid #00A4E4;
}
.public-register {
  border-top:
    6px solid #E31837;
}
.registration-card h3 {
  color: #1D2D5C;
  font-size: 1.8rem;
}
.register-type {
  display: block;
  text-align: center;
  font-size: .85rem;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 15px;
}
.member-register .btn-register {
  background: #00A4E4;
}
.member-register .btn-register:hover {
  background: #008dcc;
  transform: translateY(-3px);
  box-shadow:
    0 12px 25px rgba(0, 164, 228, .35);
}
.public-register .btn-register {
  background: #E31837;
}
.public-register .btn-register:hover {
  background: #c9142e;
  transform: translateY(-3px);
  box-shadow:
    0 12px 25px rgba(227, 24, 55, .35);
}
.price-box {
  text-align: center;
  margin: 30px 0;
}
.price-box strong {
  display: block;
  font-size: 4rem;
  line-height: 1;
  margin: 10px 0;
}
.member-register .price-box strong {
  color: #00A4E4;
}
.public-register .price-box strong {
  color: #E31837;
}
.card-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  background:
    rgba(255, 255, 255, .85);
  color: #1D2D5C;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, .10);
}
.member-register .card-badge {
  color: #00A4E4;
  border:
    1px solid rgba(0, 164, 228, .3);
}
.public-register .card-badge {
  color: #E31837;
  border:
    1px solid rgba(227, 24, 55, .3);
}
.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
  padding: 14px 35px;
  border-radius: 50px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  transition: .3s ease;
}
.register-action {
  text-align: center;
}
.btn-register {
  display: inline-flex;
}
.registration-section {
  position: relative;
  overflow: hidden;
}
.registration-hud {
  position: absolute;
  left: -120px;
  bottom: -150px;
  width: 650px;
  opacity: .22;
  pointer-events: none;
  z-index: 1;
}
.registration-section .container {
  position: relative;
  z-index: 2;
}
.registration-hud img {
  width: 100%;
  display: block;
}
/* =========================================================
   RESPONSIVE REGISTRO
========================================================= */

@media (max-width: 768px) {

    .registration-section {
        padding: 80px 0;
    }

    .registration-section > .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .registration-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }

    .registration-card {
        width: 100%;
        box-sizing: border-box;
        padding: 55px 25px 40px;
    }

    .card-badge {
        top: 20px;
        right: 20px;
        font-size: .7rem;
        padding: 7px 14px;
    }

    .registration-card h3 {
        font-size: 1.6rem;
    }

    .price-box strong {
        font-size: 3.5rem;
    }

    .registration-hud {
        width: 450px;
        left: -180px;
        bottom: -120px;
    }
}