/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* BODY */
body {
    text-align: center;
    background: #0a0a0a;
    color: white;
}

/* HEADER */
.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 63px;
    background: #0c0c0c;
    position: fixed;
    width: 100%;
    z-index: 100;
    padding: 0 20px;
}

.logo a {
    text-decoration: none;
    color: #AD936D;
    text-transform: uppercase;
    font-size: 20px;
}

.navbar {
    display: flex;
    gap: 10px;
}

.navbar a {
    padding: 20px;
    color: aliceblue;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    transition: 0.3s;
}

.navbar a:hover {
    background:#AD936D ;
    border-radius: 5px;
}

/* HERO */
/* SECCIÓN HERO Slide */
/* ============================= */

.slider-container {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 750px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;       /* ↓ Texto abajo */
  justify-content: center;     /* ↔ Centrado horizontal */
  position: relative;
  color: #fff;
  text-align: center;          /* Centrar texto */
  padding: 0 20px 50px 20px;   /* Espacio abajo, ajusta 50px si quieres más o menos */
}


.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.3));
  z-index: 0;
}

.slide-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.slide-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Botones centrados */
.slide-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-slide {
  display: inline-block;
  background-color: #AD936D;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-slide:hover {
  background-color: #8a7557;
}

.btn-slide.secondary {
  background-color: transparent;
  border: 2px solid #AD936D;
}

.btn-slide.secondary:hover {
  background-color: #AD936D;
}

/* Controles */
.control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
}

.control:hover {
  background: rgba(0,0,0,0.7);
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .slider-container, .slide {
    height: 400px;
  }

  .slide-content h2 {
    font-size: 1.6rem;
   
  }

  .slide-content p {
    font-size: 1rem;
  }

  .btn-slide {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}


/* SECCIÓN QUÉ ES - ESTILO ELEGANTE */

.content-que-es {
  background: linear-gradient(135deg, #000000 0%, #3e3d43 100%);
}

.que-es {
  
  padding: 90px 10px;
}

.que-es-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 70px 0 70px 0;
  
}

.que-es-imagen img {
  width: 100%;
  max-width: 420px;
  border-radius: 0;          /* ← sin borde redondeado */
  box-shadow: none;         /* ← sin sombra */
  display: block;
}

.que-es-texto {
  flex: 1 1 400px;
  text-align: left;
}

.que-es-texto .title {
  text-align: left;
  font-size: 1.8rem;
  color: #AD936D;
  margin-bottom: 15px;
}

.que-es-texto p {
  max-width: 500px;
  margin-top: 15px;
  line-height: 1.6;
  color: #d1d1d1;          /* tono gris claro elegante */
  font-size: 1rem;
}

/* Responsivo para móviles */
@media (max-width: 768px) {
  .que-es-container {
    flex-direction: column;
    text-align: center;
  }

  .que-es-texto .title {
    text-align: center;
  }

  .que-es-texto p {
    margin: 0 auto;
  }
}


/* BOTONES */
.btn {
    display: inline-block;
    padding: 10px 40px;
    border: 2px solid #AD936D;
    color: white;
    text-decoration: none;
    background: #AD936D;
    margin: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: none;
    color: #AD936D;
}

/* SECCIONES */
.content {
    padding: 90px 10px;
   
}

.title {
    font-size: 1.8rem;
    color: #AD936D;
    margin-bottom: 20px;
    
}

.content p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* BOXES */
.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
}



.box-container .box {
   
    border-radius: 1rem;
    
    padding: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    height: 180px;
 
}

.box-container .box:hover {
    transform: translateY(-10px);
    
}


.box h3 {
    color: #AD936D;
    margin: 10px 0;
}

.box p {
    color: #fff;
}

/* SECCION BENEFICIOS */
.about {
     background:url(terramonte.png);
     background-size: cover;
     background-attachment: fixed;
}

/* SECCION PLANES */
.price {
    background: url(terramonte.png) no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

.content.price1{
   background-color: rgb(51, 50, 52);
    background-size: cover;
    background-attachment: fixed;
}
/* 
   SECCIÓN PLANES DE RECOMPENSAS */
.recompensas-section {
  background:url(costos.jpg);
    background-size: cover;
    background-attachment: fixed;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recompensas-section .title-recompensas {
  font-size: 2.2rem;
  color: #AD936D;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
  position: relative;
}

.recompensas-section .title-recompensas::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #AD936D;
  margin: 10px auto 0;
  border-radius: 5px;
}

.recompensas-box {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 40px;
  width: 600px;
  color: #fff;
  text-align: center;

  font-size: 1.1rem;
  line-height: 1.7;
}

.recompensas-box p {
  margin-bottom: 15px;
}

@media (max-width: 600px) {
  .recompensas-box {
    padding: 20px;
    font-size: 1rem;
    max-width: 90%;
  }
  .recompensas-section .title-recompensas {
    font-size: 1.8rem;
  }
}

.Planes{
  background: linear-gradient(135deg, #000000 0%, #1f1f1f 100%);
    padding: 40px 20px;
}

.Planes .card {
    background: #282727;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    display: inline-block;
    width: 250px;
    transition: transform 0.3s;
    height: 350px;
    display:inline-table;
}

.Planes .card:hover {
    transform: translateY(-10px);
   
}


/* Recuadro centrado y más grande */
/* Recuadro de Planes de Recompensas centrado y cómodo */





   /*FOOTER*/

.footer {
  background: #0c0c0c;
  padding-top: 50px;
  color: #ddd;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
}

.footer-box h4 {
  color: #AD936D;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #AD936D;
  margin-bottom: 10px;
}

.footer-box p {
  color: #bbb;
  line-height: 1.5;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 8px;
  color: #ccc;
}

.footer-box a {
  color: #AD936D;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-box a:hover {
  color: white;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-block;
  background: #AD936D;
  color: #0c0c0c;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-size: 1rem;
  transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
  background: white;
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  padding: 15px;
  font-size: 0.8rem;
  color: #777;
  margin-top: 30px;
}
