/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Source Sans Pro", sans-serif;
  scroll-behavior: smooth;
}


/*COLORES*/

:root{
    --antiquewhite: "antiquewhite";
     --main-color: #00B4D8;
}

#antiquewhite{
    background: var(--antiquewhite);
}

.second-page{
    background-color: --antiquewhite;
}




.toTOP{
  scroll-behavior: smooth;
}


/* Layout base */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Top Bar */
.top-bar {
  background-color: #f3f4f6;
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
}

.top-bar .left,
.top-bar .right {
  display: flex;
  gap: 15px;
  font-size: initial;
  justify-items: center;
}

.top-bar .right {
  display: none;
}

@media (min-width: 768px) {
  .top-bar .right {
    display: flex;
  }
}

/* Navigation */
.navbar {
  background-color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.menu-links {
  display: none;
  gap: 30px;
  flex-direction: row;
}

@media (min-width: 768px) {
  .menu-links {
    display: flex;
  }
}

.menu-links a {
  color: #000;
  text-decoration: none;
}

.menu-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.menu-toggle {
  background-color: #2dd4bf;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  text-decoration: none;
}

.menu-links.open {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #fff;
  padding: 10px;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100vh; /*auto*/
  /* max-height: 100vh; */
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-content .subtitle {
  font-size: 24px;
  margin-bottom: 5px;
}

.hero-content .location {
  font-size: 20px;
  margin-bottom: 5px;
}

.hero-content .tagline {
  font-size: 14px;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: white;
  z-index: 2;
}

.hero-nav.left {
  left: 20px;
}

.hero-nav.right {
  right: 20px;
}

.hero-scroll {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 14px;
  z-index: 2;
}

/* SHOP SHOP.php */
.login-singup {
  background-color: #2dd4bf;
}

.login-singup a {
  font-size: 2rem;
  font-weight: 600;
}

/* Footer */
.zetaBox {
  background-color: #000;
  color: #fff;
  padding: 3rem 1rem;
  font-family: sans-serif;
}

.f8rWrapper {
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeZoom 1.2s ease-in;
}

.layoutXzGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.alphaSec {
  display: flex;
  flex-direction: column;
}

.glowText {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.glowText::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.glowText:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.smlNote {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.socialCloud a {
  margin-right: 1rem;
  font-size: 1.1rem;
  color: white;
  transition: color 0.3s ease;
}

.socialCloud a:hover {
  color: #aaa;
}

.zListy {
  list-style: none;
  padding: 0;
  font-size: 0.875rem;
}

.zListy li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.zListy a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.zListy a:hover {
  color: #aaa;
}

.nanoForm {
  display: flex;
  border-bottom: 1px solid white;
}

.txtInp9 {
  background: transparent;
  border: none;
  padding: 0.5rem;
  color: white;
  width: 100%;
  outline: none;
}

.sendRocket {
  background: transparent;
  border: none;
  color: white;
  padding: 0.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.sendRocket:hover {
  color: #aaa;
}

.lineDiv {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #333;
  margin-top: 3rem;
  padding-top: 2rem;
  font-size: 0.75rem;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .lineDiv {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.logoMarky {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logoMarky img {
  width: 249px;
  height: auto;
  border-radius: 50%;
}

.byteContact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.toSkyBtn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.75rem;
}

.toSkyBtn a {
  color: white;
  transition: color 0.3s ease;
  text-decoration: none;
}

.toSkyBtn a:hover {
  color: #aaa;
}

/* Four-page layout */
.four-page-body {
  /*background-color: #f7fafc;*/
  max-width: 100%;
  margin: auto;
  padding-right: 5rem;
  padding-left: 5rem;
  background: antiquewhite;
}

.four-page-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 2fr));
  gap: 2rem;
  padding: 2rem 0;
  max-width: 1550px;
  margin: auto;
}

.four-page-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.four-page-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Overlay (used for color backgrounds on cards) */
.four-page-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease;
}

/* Fade-in animation for images and content */
.fade-in {
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}






/* Content inside cards */
.four-page-content {
  position: relative;
  z-index: 1;
  padding: 1rem;
  color: white;
}

.four-page-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

.four-page-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.four-page-location {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.four-page-location i {
  margin-right: 0.5rem;
}

.four-page-date {
  font-size: 0.875rem;
  color: #81e6d9;
}

/* Individual background colors for each card */
.four-page-bg-dark {
  background-color: #2d3748; /* Dark background */
}

.four-page-bg-yellow {
  background-color: #ecc94b; /* Yellow background */
}

.four-page-bg-teal {
  background-color: #4fd1c5; /* Teal background */
}

/* Styling for the images */
.four-page-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 1rem;
}

.four-page-img img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 1rem;
}

/* Media Queries */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 8px 0;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-content .subtitle {
    font-size: 18px;
  }

  .menu-links {
    flex-direction: column;
  }
}


@media screen and (max-width: 370px) {
  four-page-body {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

  






/* shop producto */

.swiper-button-next{
  font-size: 16px;
}