@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --text-dark: #0c0a09;
  --text-light: #78716c;
  --white: #ffffff;
  --max-width: 1300px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 1rem 1rem;
}

.section__header {
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 3rem;
  color: #54749C;
  text-align: center;
}

.section__description {
  color: var(--text-dark);
  line-height: 1.75rem;
  text-align: justify;
}

.btn {
  padding: 0.6rem 1.5rem;
  outline: none;
  border: none;
  white-space: nowrap;
  font-size: 1rem;
  color: var(--white);
  background-color: #65A5DC;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: #5291c8;
}


img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}




.explore__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}


.explore__image img {
  max-width: 450px;
  margin-inline: auto;
}

.explore__content .section__description {
  margin-bottom: 1rem;
}

.explore__btn {
  text-align: center;
}


.chef {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.chef__bg {
  position: absolute;
  z-index: -1;
  max-width: 275px;
  left: -4rem;
  bottom: -2rem;
}

.chef__container {
  display: grid;
  gap: 2rem;
}

.chef__content .section__description {
  margin-bottom: 1rem;
}

.chef__image {
  position: relative;
  isolation: isolate;
}

.chef__image img {
  max-width: 500px;
  border-radius: 100%;
  margin-inline: auto;
}

.chef__image::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 100%;
  max-width: 500px;
  background-color: var(--primary-color);
  border-radius: 100%;
  z-index: -1;
}

.chef__list {
  display: grid;
  gap: 0.5rem;
  
}

.chef__list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-weight: 500;
  color: var(--text-dark);
}

.chef__list li span {
  font-size: 1.5rem;
}

.chef__list li:nth-child(1) span {
  color: #6bad7a;
}
.chef__list li:nth-child(2) span {
  color: #6bad7a;
}
.chef__list li:nth-child(3) span {
  color: #6bad7a;
}
.chef__list li:nth-child(4) span {
  color: #6bad7a;
}
.chef__list li:nth-child(5) span {
  color: #6bad7a;
}
.chef__list li:nth-child(6) span {
  color: #6bad7a;
}


.swiper {
  padding-bottom: 3rem;
  width: 100%;
}


.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}


@media (width > 768px) {

  .explore__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .explore__content .section__header {
    max-width: 500px;
  }

  

  .explore__content :is(.section__header, .section__description),
  .explore__btn {
    text-align: left;
  }

  .chef__bg {
    max-width: 300px;
  }

  .chef__container {
    align-items: center;
  }

  .chef__image {
    grid-area: 1/2/2/3;
  }

  .chef__content :is(.section__header, .section__description) {
    text-align: left;
  }

  .chef__list li {
    justify-content: flex-start;
  }

  .client__swiper {
    padding: 3rem 2rem;
  }

  .footer__container {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

@media (width > 1024px) {
  .special__grid {
    gap: 2rem;
  }

  .special__card {
    padding: 2rem;
    border-radius: 3rem;
  }

  .banner__container {
    gap: 2rem;
  }

  .chef__bg {
    max-width: 375px;
  }
}



/* ===== GALERÍA DE CÍRCULOS ===== */
.galeria {
  background-color: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.galeria__container {
  max-width: 1300px;
  margin: auto;
}

.galeria__linea {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.galeria__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
}

.galeria__circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ccc;
  transition: transform 0.3s, border-color 0.3s;
}

.galeria__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galeria__circle:hover {
  transform: scale(1.1);
  border-color: #2b4e88;
}

.galeria__item p {
  margin-top: 0.8rem;
  font-weight: 500;
  color: #333;
}

/* Responsivo */
@media (max-width: 768px) {
  .galeria__item {
    width: 100px;
  }

  .galeria__circle {
    width: 100px;
    height: 100px;
  }
}


/* ===== NOTA INFORMATIVA (diseño moderno tipo tarjeta) ===== */
.nota__importante {
  display: flex;
  justify-content: center;
  background: #e0f0ff;
}

.nota__container {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #ffffff;
  border-left: 6px solid #2b4e88;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.nota__container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.nota__icon {
  font-size: 2.5rem;
  color: #2b4e88;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.nota__content h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 0.5rem;
}

.nota__content p {
  color: var(--text-light);
  line-height: 1.7;
  text-align: justify;
  font-size: 1rem;
}


/* ===== LÍNEA DEL TIEMPO (PROCESO) ===== */
.proceso {
  text-align: center;
}

.proceso__container {
  max-width: 1300px;
  margin: auto;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 2rem;
  margin-top: 3rem;
  padding-bottom: 1rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #65A5DC;
  transform: translateY(-50%);
  z-index: 0;
}

.timeline__step {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 1.5rem;
  width: 180px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.timeline__step:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.timeline__icon {
  width: 60px;
  height: 60px;
  background: #65A5DC;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.timeline__step h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #222;
}

.timeline__step p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Responsivo */
@media (max-width: 900px) {
  .timeline {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .timeline__step {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}


.section__container .chef__content .section__subheader{
  padding-block: 1rem 2rem;
}





/* ==== CONTENEDOR PRINCIPAL DE LAS DOS COLUMNAS ==== */

.publicaciones__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem; /*cambiamos de 11rem a 4rem para mejorar el diseño en pantallas pequeñas*/
  align-items: start;
}

/* Mantiene tus estilos internos .chef intactos */
.publicaciones__col .chef__content {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
}

/* ==== NOTA PEQUEÑA DEBAJO ==== */
.mini__nota {
  transform: scale(0.95);
}

.mini__nota .nota__container {
  padding: 1rem 1.2rem;
  font-size: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.publicaciones__col .section__container{
  padding-top: 0;
  padding-bottom: 0;
}

/* ==== RESPONSIVO ==== */
@media (max-width: 900px) {
  .publicaciones__cols {
    grid-template-columns: 1fr;
  }
  .mini__nota {
    transform: scale(1);
  }
}

/* = RESPONSIVO nuevo xd = */
@media (max-width: 600px) {
  .section__header {
    font-size: 1.4rem;
    line-height: 2rem;
  }

  .section__description {
    font-size: 0.9rem;
    line-height: 1.4rem;
  }

  .btn {
    width: 100%;
  }
}