
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a1a2a;
  color: #e6f1ff;
  line-height: 1.6;
  overflow-x: hidden;
}


.pageCanvas {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.mainContent {
  flex-grow: 1;
}

.oceanBlock {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.deepSea {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.coralReef {
  position: relative;
  z-index: 10;
}

.underwaterBg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.underwaterBg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/underwater-background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.underwaterBg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 26, 42, 0.8), transparent, rgba(10, 26, 42, 0.8));
}


.underwaterBgLlamada {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.underwaterBgLlamada::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/backLlamadaMy.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.underwaterBgLlamada::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 26, 42, 0.8), transparent, rgba(10, 26, 42, 0.8));
}

.underwaterBgSobreMy {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.underwaterBgSobreMy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/backMySobre.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.underwaterBgSobreMy::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 26, 42, 0.8), transparent, rgba(10, 26, 42, 0.8));
}


.underwaterBgMiJuego {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.underwaterBgMiJuego::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/backMiJuego.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.underwaterBgMiJuego::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 26, 42, 0.8), transparent, rgba(10, 26, 42, 0.8));
}

.underwaterBgRegiMi {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.underwaterBgRegiMi::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/backRegiMy.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.underwaterBgRegiMi::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 26, 42, 0.8), transparent, rgba(10, 26, 42, 0.8));
}


.underwaterBgCon {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.underwaterBgCon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/backCon.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.underwaterBgCon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 26, 42, 0.8), transparent, rgba(10, 26, 42, 0.8));
}

.underwaterBgChar {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.underwaterBgChar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/backChar.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.underwaterBgChar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 26, 42, 0.8), transparent, rgba(10, 26, 42, 0.8));
}

.navShell {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  background-color: #0a1a2a;
}

.navCore {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.brandMark {
  display: flex;
  align-items: center;
}

.brandMark img {
  height: 40px;
  width: auto;
}

.navLinks {
  display: none;
}

.navLinks a {
  color: #e6f1ff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.navLinks a:hover {
  color: #38bdf8;
}

.navLinks a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background-color: #38bdf8;
  transform: scaleX(0);
  transition: transform 0.3s;
}

.navLinks a:hover::after {
  transform: scaleX(1);
}

.menuToggle {
  display: none;
  background: none;
  border: none;
  color: #e6f1ff;
  cursor: pointer;
}

.menuToggle svg {
  width: 24px;
  height: 24px;
}

.mobileMenu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0a1a2a;
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobileMenu.isOpen {
  transform: translateX(0);
}

.mobileNavLinks {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 32px;
  height: calc(100vh - 64px);
}

.mobileNavLinks a {
  margin: 12px 0;
  color: #e6f1ff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s;
}

.mobileNavLinks a:hover {
  color: #38bdf8;
}


.bottomWaters {
  background-color: #1a1a20;
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 32px 0;
  width: 95%;
  margin: 0 auto;
  margin-bottom: 20px;
  border-radius: 50px;
}

.bottomGrid {
  display: grid;
  justify-items: center;
  grid-template-columns: 1fr;
  gap: 32px;
}

.bottomSection h3 {
  color: #38bdf8;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

.bottomSection p {
  color: rgba(230, 241, 255, 0.7);
  font-size: 14px;
}

.bottomLinks {
  list-style: none;
}

.bottomLinks li {
  margin-bottom: 8px;
}

.bottomLinks a {
  color: rgba(230, 241, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.bottomLinks a:hover {
  color: #38bdf8;
}

.copyrightBar {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  text-align: center;
  font-size: 14px;
  color: rgba(230, 241, 255, 0.6);
}


.glowTitle {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(to right, #38bdf8, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sectionTitle {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  background: linear-gradient(to right, #38bdf8, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.centerAlign {
  text-align: center;
}

.oceanText {
  color: rgba(230, 241, 255, 0.8);
  font-size: 18px;
  margin-bottom: 24px;
}


.pearlButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pearlButton::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(30deg);
  transition: transform 0.5s ease-out;
}

.pearlButton:hover::after {
  transform: rotate(30deg) translateX(350%);
}

.coralButton {
  background: linear-gradient(to right, #1e40af, #0ea5e9);
  color: white;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.25);
}

.coralButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}

.shellButton {
  border: 1px solid #38bdf8;
  color: #38bdf8;
  background: transparent;
}

.shellButton:hover {
  background-color: rgba(56, 189, 248, 0.1);
}


.featureCard {
  background-color: #252530;
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 8px;
  padding: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.featureCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.15);
}

.iconBubble {
  width: 64px;
  height: 64px;
  background-color: rgba(56, 189, 248, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.iconBubble svg {
  width: 32px;
  height: 32px;
  color: #38bdf8;
}

.cardTitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #e6f1ff;
}

.cardText {
  color: rgba(230, 241, 255, 0.7);
}


.twoColumns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.threeColumns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.fourColumns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.imageFrame {
  position: relative;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.imageFrame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@keyframes waterWave {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes waterShine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.waterEffect {
  position: relative;
  overflow: hidden;
}

.waterEffect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 149, 255, 0.03) 0%,
    rgba(0, 149, 255, 0.07) 50%,
    rgba(0, 149, 255, 0.03) 100%
  );
  z-index: 1;
  opacity: 0;
  animation: waterWave 8s ease-in-out infinite;
}

.waterEffect::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 300%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.03) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: waterShine 6s ease-in-out infinite;
}
@media (max-width: 1024px){
  .menuToggle {
    display: block;
  }
}

@media (min-width: 768px) {
  .navLinks {
    display: flex;
    gap: 24px;
  }

  
  .bottomGrid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .twoColumns {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .threeColumns {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .fourColumns {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .glowTitle {
    font-size: 48px;
  }
  
  .sectionTitle {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .fourColumns {
    grid-template-columns: repeat(4, 1fr);
  }
}


.marSlider {
  position: relative;
 
  display: flex;
  align-items: center;
}

.sliderContent {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slideItem {
  display: none;
  width: 100%;
  min-height: 500px;
  align-items: center;
  justify-content: center;
}

.slideItem.activeSlide {
  display: flex;
}


.cornerLayout {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  grid-template-rows: 1fr 200px 1fr;
  gap: 20px;
  min-height: 500px;
}

.cornerImage {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.2);
  transition: transform 0.3s ease;
}

.cornerImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.topLeft {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  align-self: end;
}

.topRight {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
  align-self: end;
}

.bottomLeft {
  grid-column: 1;
  grid-row: 3;
  justify-self: end;
  align-self: start;
}

.bottomRight {
  grid-column: 3;
  grid-row: 3;
  justify-self: start;
  align-self: start;
}

.centerText {
  grid-column: 2;
  grid-row: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.glowTitle{
  font-size: 40px;
  margin-bottom: 16px;
}
.oceanText{
  font-size: 18px;
  margin-bottom: 16px;
}


@media (max-width: 768px) {
  .cornerLayout {
    grid-template-columns: 1fr 250px 1fr;
    grid-template-rows: 1fr 180px 1fr;
    gap: 15px;
    min-height: 450px;
  }
  
  .cornerImage {
    width: 160px;
    height: 160px;
  }
  
  .centerText {
    grid-column: 2;
    grid-row: 2;
    padding: 0 10px;
  }
  .glowTitle{
  font-size: 30px;
  margin-bottom: 8px;
}
.oceanText{
  font-size: 14px;
  margin-bottom: 8px;
}
}


@media (max-width: 480px) {
  .cornerLayout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-height: auto;
    padding: 20px 0;
  }
  
  .cornerImage {
    width: 120px;
    height: 120px;
    position: relative;
  }
  
  .topLeft,
  .topRight,
  .bottomLeft,
  .bottomRight {
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
    align-self: unset;
  }
  
  .centerText {
    grid-column: unset;
    grid-row: unset;
    order: 3;
    margin: 20px 0;
    padding: 0 20px;
  }
  

  .topLeft {
    order: 1;
  }
  
  .topRight {
    order: 2;
  }
  
  .bottomLeft {
    order: 4;
  }
  
  .bottomRight {
    order: 5;
  }
}


@media (max-width: 360px) {
  .cornerLayout {
    padding: 15px 0;
    gap: 15px;
  }
  
  .cornerImage {
    width: 100px;
    height: 100px;
  }
  
  .centerText {
    padding: 0 15px;
  }
}


@media (max-width: 480px) {
  .cornerLayout.mobileGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .mobileGrid .topLeft {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }
  
  .mobileGrid .topRight {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }
  
  .mobileGrid .centerText {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 10px 0;
  }
  
  .mobileGrid .bottomLeft {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
  }
  
  .mobileGrid .bottomRight {
    grid-column: 2;
    grid-row: 3;
    justify-self: center;
  }
}

.textImageLayout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.funText {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slideImage {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

.slideImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.threeColumnLayout {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.columnImage {
  width: 200px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.2);
}

.columnImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.columnText {
  text-align: center;
  padding: 20px;
}


.textOnlyLayout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 24px;
}

.textOnlyLayout p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(230, 241, 255, 0.9);
  margin-bottom: 16px;
}


.sliderPagination {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 20;
}

.paginationBtn {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(56, 189, 248, 0.3);
  background: rgba(37, 37, 48, 0.8);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: rgba(230, 241, 255, 0.7);
  backdrop-filter: blur(10px);
}

.paginationBtn:hover {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  transform: translateY(-2px);
}

.paginationBtn.activePagination {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}


@media (max-width: 768px) {
  .cornerLayout {
    grid-template-columns: 1fr 250px 1fr;
    height: 400px;
  }
  
  .cornerImage {
    width: 100px;
    height: 100px;
  }
  
  .textImageLayout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .threeColumnLayout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .columnImage {
    width: 150px;
    height: 180px;
    margin: 0 auto;
  }
  
  .sliderPagination {
    bottom: -60px;
  }
  
  .paginationBtn {
    width: 50px;
    height: 50px;
  }
}

.navLinksMyIconCustom{
  display: flex;
  align-items: center;
  gap: 10px;
}
.navLinksMyIconCustom img{
width: 40px;
}

.burgerMenu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.burgerMenu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .navLinks {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 32, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
    }

    .navLinks.active {
        display: flex;
    }

    .navLinks a {
        font-size: 1.5rem;
    }

    .burgerMenu {
        display: flex !important;
    }
}