
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: #f0eee9;
  color: #222;
}




#cookie-banner{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#111;
color:white;
padding:20px;
display:none;
z-index:99999;
font-size:14px;
}

.cookie-container{
max-width:1200px;
margin:auto;
display:flex;
flex-wrap:wrap;
gap:20px;
align-items:center;
justify-content:space-between;
}

.cookie-buttons{
display:flex;
gap:10px;
}

.cookie-buttons button{
padding:8px 16px;
border:none;
cursor:pointer;
border-radius:4px;
}

.cookie-accept{
background:#0070f3;
color:white;
}

.cookie-reject{
background:#444;
color:white;
}

.cookie-config{
background:white;
color:black;
}



 
.logo img {
  height: 32px;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgb(248, 248, 248);
  z-index: 1000;
  border-bottom: 0.1px solid #ddd;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 45px; 
}

.nav-menu {
  display: flex;
  gap: 1.6rem;
  font-weight: 200;
  font-size: 0.8rem;
  height: 32px; 
  align-items: center;

  background: rgba(255, 255, 255, 0.85); 
  padding: 0 1rem;
  border-radius: 12px; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
}

.nav-menu a {
  text-decoration: none;
  color: #222;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #0070f3; 
}


.search-bar input {
  height: 32px; 
  padding: 0 0.8rem; 
  border-radius: 999px;
  border: 1px solid #ccc;
  font-size: 0.8rem;
  box-sizing: border-box;
}

.lang-switch {
  display: flex;
  gap: 0.5rem; 
}

.lang-switch button {
  background-color: #ffffff;
  color: #0070f3; 
  border: 2px solid #0070f3;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switch button:hover {
  background-color: #0070f3;
  color: #ffffff;
}

.lang-switch button.active {
  background-color: #0070f3;
  color: #ffffff;
}
.lang-switch button.active-lang {
  background-color: #0070f3;
  color: #fff;
  font-weight: bold;
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn-primary {
  background: #0070f3;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 200;
}

.btn-secondary {
  background: transparent;     
  color: #000000;             
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 200;
  border: 2px solid #000000;  
  transition: all 0.3s ease;   
}

.btn-secondary:hover {
  background: #000000;       
  color: #fff;               
  border-color: #000000;       
}

.hero {
  position: relative;
   min-height: 93vh;
     max-height: 99vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 10px; 
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.99);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
}

.hero h1 { font-size: 3.9rem; }
.hero p { font-size: 1.25rem; margin-top: 1rem; }

/* Banner */
.banner {
   background: rgb(246, 246, 246); /* puedes cambiar color/transparencia */
  position: relative;             /* 👈 fundamental */
  height: 70vh;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;   /* título arriba */
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 10px;
    margin-bottom: 10px; /* espacio abajo del banner */
}

/* Frosted sobre la imagen */
.frosted-banner {
  position: relative;             /* encima de la imagen */
  z-index: 2;
  display: inline-block;
  padding: 1.2rem 2.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0); /* puedes cambiar color/transparencia */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(0px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0);
  margin: 30px;            
}

/* Ajustes de texto */
.banner h2 { font-size: 2.9rem; color: #000; }
.banner p  { font-size: 1.5rem; color: #000; margin-top: 1rem; }

/* ===== CONTENIDO SUPERIOR ===== */
.banner-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
}


.frosted {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
    background: rgba(255, 255, 255, 0.809); 
  backdrop-filter: blur(50px);
}


.frosted h3{
  color: #111;font-size: 1.9rem;
}
.frosted p {
  color: #111;font-size: 1.1rem;
}

.grid-section {
  width: 100%;
  margin: 0;
  padding: 10px; /* margen exterior global */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; /* separación exacta entre tiles */
}

.grid-item {
  height: 580px;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: #000000;
}

.grid-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
}

.grid-content {
  position: absolute;
  bottom: 2.9rem;
  left: 2.5rem;
  right: 2.5rem;
  z-index: 2;
}

.grid-content h3,
.grid-content p {
  display: inline-block;
    margin-bottom: 0.6rem;
}

.grid-content .btn-group {
  justify-content: flex-start;
}



.benefits-section {
  padding: 5rem 1rem;
   background: #161616;
    margin-bottom: 10px; 
}

.benefits-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(246,246,246,0.9);
  backdrop-filter: blur(6px);
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}
.metrics-section {
  background: #dbb54d;
  padding: 4rem 1rem;
    margin-bottom: 10px; 
}

.metrics-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2rem;
  text-align: center;
}

.metric strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 300;
}

.metric span {
  font-size: 0.95rem;
  opacity: 0.8;
}


.comparison-section {
    background: #030033;
  padding: 5rem 1rem;
    margin-bottom: 10px;
}

.comparison-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.comparison-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  font-weight: 300;
  color:white;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 2rem;
   color:white;
}

.comparison-card {
  padding: 2rem;
  border-radius: 20px;
  background: #f6f6f6;
  color: black;
}

.comparison-card.highlight {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.comparison-card h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.comparison-card ul {
  list-style: none;
  padding: 0;
}

.comparison-card li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.why-section {
  padding: 5rem 1rem;
  background: #ffffff;
    margin-bottom: 10px; 
}

.why-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.why-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 4rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.why-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: flex-start;
}

.why-number {
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0.4;
}

.why-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.why-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.85;
}
.where-section {
  padding: 5rem 1rem;
  background: #161616;
}

.where-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.where-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: white;
}

.where-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
  font-size: 1rem;
  opacity: 0.75;
    color: white;
}

.where-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.where-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.where-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.where-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.where-card p {
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0.85;
}


.carousel-section {
  width: 100%;
  padding: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.carousel-track {
  display: flex;
  gap: 10px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.carousel-item {
  position: relative; 
  flex: 0 0 calc(100% - 16px);
  height: 750px;
  background-size: cover;
  background-position: center;
}

.frosted-carousel {
  display: inline-block;
  max-width: 520px;
  padding: 1.2rem 1.4rem;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.carousel-content {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  z-index: 2;
}

.carousel-content h3 {
  font-size: 1.8rem;
  color: #000;
}

.carousel-content p {
  margin-top: 0.6rem;
  color: #222;
}



@media (max-width: 900px) {
  .grid-section {
    grid-template-columns: 1fr;
    padding: 8px;
    gap: 8px;
  }
  .banner,
  .hero {
    height: 80vh;
  }

  .hero h1 { font-size: 2.2rem; }
  .banner h2 { font-size: 2rem; }
    .carousel-item {
    flex: 0 0 70vw;
  }
}


.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff9900;
}

.carousel-dot.active {
  background: #222;
}
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .search-bar input {
    width: 100%;
  }
}
