*,
*::before,
*::after {
  box-sizing: border-box;
  padding:0;
  margin:0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;

}

body {
  font-family: "Roboto", "Inter", "Noto Sans", sans-serif;
  background: #fff8f0;
  color: #000;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}
 h1 {
  color: rgb(238 77 45);
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
 }
 h2 {
  color: rgb(238 77 45);
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
}
 p {
  margin-top: 0;
  margin-bottom: 0;
}

.container {
  max-width: 100%;
  flex-grow: 1;
  margin: 0;
  padding: 0;
}

.banner {
  background-color: #fff8f0;
  padding: 2rem 0;
}

.banner-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  width: 100%;
}

.banner-left,
.banner-right {
  flex: 1 1 50%;
  min-width: 300px;
  padding: 1rem;
}

.banner-left img {
  width: 100%;
  height: auto;
  min-height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.banner-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.banner-right-btn{
  display: flex;
  gap:1rem
}


.badge-wrapper {
  background: #e64728;
  border-radius: 16px;
  padding: 2rem 4rem;
  width: fit-content;
  margin: auto;
  box-shadow: 0 8px 20px rgba(230, 71, 40, 0.2);
  text-align: center;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  animation: floatUp 1.8s ease-in-out;
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge-top {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}

.badge-mid {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #fce6df);
  font-size: 2.5rem;
  font-weight: 900;
  color: #e64728;
  border-radius: 12px;
  padding: 0.5rem 1.6rem;
  margin: 0.7rem 0;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 0 12px rgba(255, 255, 255, 0.6);
  animation: pulseGlow 2s infinite ease-in-out;
  z-index: 1;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.15),
      inset 0 0 12px rgba(255, 255, 255, 0.6);
  }
  50% {
    transform: scale(1.06);
    box-shadow:
      0 6px 20px rgba(230, 71, 40, 0.3),
      inset 0 0 15px rgba(255, 255, 255, 0.75);
  }
}

.badge-bottom {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-top: 0.3rem;
  letter-spacing: 0.5px;
}


.btn-secondary,
.btn-accent {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  user-select: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-secondary {
  color: #ff6f3c;
  background-color: #fff;
  border: 2px solid #ff6f3c;
  
}

.btn-secondary:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 111, 60, 0.6);
  text-decoration: unset;
  background-color: #ff6f3c;
  border: 2px solid #fff;
}

.btn-accent {
  background-color: #007bff;
  border: 2px solid #007bff;
  color: #fff;
  text-decoration: unset;
}

.btn-accent:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.6);
  text-decoration: unset;
  color: #fff;
}


.section-rio-mcn {
  position: relative;
  background-color: #fff;
  background-image: url('/kol/dev/landingPage/assets/2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #000;
  padding: 7rem 15rem;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.section-rio-mcn .overlay-content {
  position: relative;
  z-index: 1;
  max-width: 60%;
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: left;
}

.section-rio-mcn p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.benefits-section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
  overflow-x: hidden;
}


.benefits-section img {
  width: auto;
  max-width: 100%;

  object-fit: contain;
  display: block;
  margin: 0 auto 10px; 
}
.image-box {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.image-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.card-link {
  text-decoration: unset;
  color: 	#E0F0FF;
}
.fee-section {
  margin-bottom: 2rem;
  color: #000;
  padding: 2rem;
  text-align: center;
  background: #fff;
}

.fee-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: left;
}

.fee-left {
  flex: 1 1 400px;
}

.fee-right {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.fee-right .illustration {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}


.fee-section strong,
.fee-section span {
  font-size: 1.5rem;
}

.accent-title {
  display: block; 
  text-align: left !important;
}


.fee-section p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.fee-section .item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.fee-section .item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.fee-section button.btn-primary {
  margin-top: 1.5rem;
  background: linear-gradient(90deg, rgb(253, 48, 135) 30%, rgb(238 77 45) 100%);
  color: #fff;
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
}

.fee-section button.btn-primary:hover {
  background: linear-gradient(90deg, rgb(238 77 45) 30%, rgb(253, 48, 135) 100%);
}

.promo-banner {
  background-color: #fff;
  padding: 1rem 0;
  text-align: center;
  
}

a.btn-primary:hover {
 
  text-decoration: none;
}
.accent-text {
  font-weight: 700;
  color: #ff3b3b;
  margin-left: 5px;
}

.register-box {
  padding: 2.5rem;
}

.register-box label {
  display: block;
}

.register-box span {
  display: block;
  font-weight: 600;
}

.register-box label span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.register-box label img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.register-box form {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.register-box input {
  width: 100%;
  max-width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.register-box input:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 8px #00000055;
}

.register-box button {
  background-color: rgb(238 77 45);
  padding: 0.8rem 2rem;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.register-box button:hover {
  background-color: #333;
}
#register {
  scroll-margin-top: 100px; 
}

.register-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.register-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}
 .form-group{
  margin-bottom: 0;
 } 
.conditions-container {
  padding: 2.5rem;
}

.conditions-image img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.conditions-container p {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  user-select: none;
}

.conditions-container ol {
  padding-left: 1.2rem;
  margin-bottom: 1.2rem;
}

.conditions-container ol > li {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  color: #222;
}

.conditions-container ul {
  padding-left: 1.4rem;
  list-style: disc inside;
  margin-top: 0.4rem;
}

.conditions-container ul li {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.steps-container {
  background: #e74c2e;
  padding: 20px 10px;

}

.steps-image {
  flex: 1 1 200px; 
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.steps-image img {
  max-height: 100%;
  max-width: 80%;
  object-fit: contain;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.step-card {
  width: 700px;
  display: flex;
  justify-content: center;
  align-items: center
}


.step-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .register-box {
    width: 50%;
  }

}

@media (max-width: 640px) {
  .fee-content {
    flex-direction: column;
    gap: 1rem;
  }
  .fee-left, .fee-right {
    flex: 1 1 100%;
  }

  .section-rio-mcn {
    align-items: flex-start;
  }
  .steps-image img {
    max-width: 100%;
  }
  .register-image {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .banner-content h2 {
    font-size: 1.5rem;
  }
  .banner img {
    width: 100%;
    object-fit: contain;
    display: block;
    min-height: 0;
  }
  .section-rio-mcn {
    padding: 2rem 1rem;
    flex-direction: column;
    text-align: center;
  }

  .section-rio-mcn .overlay-content {
    max-width: 100%;
    padding: 2.5rem;
  }

  .register-box h2{
    font-size: 1.5rem;
  }

  .banner-content {
    bottom: 20px;
    left: 10px;
  }
  .banner {
    padding: 0;
  }
}

@media screen and (max-width: 480px) {
  .banner-content h2 {
    font-size: 1.5rem;
  }

  .section-rio-mcn p,
  .fee-section p,
  .register-box input,
  .conditions-container li {
    font-size: 1rem;
  }
  .fee-section strong,
  .fee-section span {
    font-size: 1rem;
  }
  .banner-content .btn-secondary,
  .banner-content .btn-accent {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}

@media (hover: none) {
  ::-webkit-scrollbar {
    display: none;
  }
}

.card-container {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 1rem;
  padding: 0rem;
}

@media (min-width: 768px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr);
  }

}
@media (min-width: 1024px) {
  .register-box input {
    max-width: 500px;
  }
}


.card img {
  object-fit: cover;
}
.bg-orange {
  background-color: rgb(238, 77, 45);
}

.card-img-custom {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-right: 10px;
}

.card-box {
  padding: 0.75rem;
  border-radius: 12px;
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}

.card-content h5 {
  font-size: 1.25rem;
  font-weight: bold;
}

.card-content p {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.card-link {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

.card-link:hover {
  text-decoration: none;
  color: #ccc;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}


.modal {
  display: none;  
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 0.5rem;
  border-radius: 12px;
  max-width: fit-content;
  max-height: 90vh;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.modal-image img {
  max-height: 60vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: 8px;
}
.chat-modal-dialog {
  max-width: 90vw;
  height: 90vh;
}

.chat-modal-content {
  height: 90vh;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.chat-modal-body {
  height: 100%;
  padding: 0;
}

.chat-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #000;
}

@media (min-width: 768px) {
  .modal-image img {
    max-height: 70vh;
  }
}

@media (max-width: 767px) {
  .modal-image img {
    max-height: 50vh;
  }
}

.close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 2rem;
  cursor: pointer;
  color: #555;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@media (min-width: 1280px) {
  .banner{
    padding: 0 15rem;
  }
  .fee-section{
    padding: 1rem 15rem;
  }
  .register-container {
    padding: 0 15rem;
  }
}

#register {
  scroll-margin-top: 80px;
}