/* ══════════════════════════════
   STYLES — Arandu Iberá (index)
   Solo estilos del index.html
   Requiere: variables.css + components.css
══════════════════════════════ */

/* ── NAV DESKTOP ── */
.header_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 70px;
  background: rgba(246, 241, 231, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav_img {
  height: 104px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.links {
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
}

.links:hover {
  color: var(--primary);
}

.reserve_btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-foreground);
  background-color: var(--primary);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition:
    background-color 0.2s,
    transform 0.1s;
}

.reserve_btn:hover {
  background-color: var(--secondary);
  transform: translateY(-1px);
}

/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--foreground);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MENÚ MOBILE ── */
.mob-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 999;
  background-color: var(--background);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mob-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mob-menu .nav_links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mob-menu .links {
  font-size: 20px;
  font-weight: 500;
}

.mob-menu .reserve_btn {
  font-size: 16px;
  padding: 12px 32px;
}

.mob-menu .burger {
  position: absolute;
  top: 20px;
  right: 32px;
}

/* ── MAIN ── */
.main_container {
  width: 100%;
  height: auto;
}

/* ── HERO ── */
.hero_background {
  width: 100%;
  height: 100vh;
  background-image:
    linear-gradient(
      to top,
      rgba(30, 40, 25, 0.75) 0%,
      rgba(30, 40, 25, 0.5) 60%,
      transparent 100%
    ),
    url("assets/DSCN3878.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.info_hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}

.h1_global {
  font-size: 64px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 8px 0 0;
}

.p_global {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 300;
}

.h3_global {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 400;
}

.hero_buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── HEADER SECTION ── */
.header_section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.h2_global {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  color: var(--primary);
}

.p_ach_text {
  width: 60%;
  color: var(--muted-foreground);
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}

.p_ach {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted-foreground);
  text-align: center;
  max-width: 640px;
}

/* ── BEST TOURISM ── */
.best_tourism_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pellegrini_img {
  width: 400px;
}
.best_badge {
  width: 100%;
  display: flex;
  justify-content: center;
}
.best_badge a {
  font-weight: bold;
  padding: 10px;
  border-radius: var(--radius);
  background-color: var(--card);
  color: var(--muted-foreground);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease-in-out;
}
.best_badge a:hover {
  transform: translateY(-4px);
}
/* ── PROPUESTA ── */
.proposal_section {
  width: 100%;
  padding: 60px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  background-color: var(--background);
}

.proposal_article {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

.proposal_card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: inset 0 2px 8px rgba(58, 58, 47, 0.08);
  transition: 0.3s ease-in-out;
}

.proposal_card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 4px 12px rgba(58, 58, 47, 0.1);
}

.proposal_card:nth-child(1) .icon_wrapper {
  background-color: #e8f0e4;
}
.proposal_card:nth-child(2) .icon_wrapper {
  background-color: #f5ead8;
}
.proposal_card:nth-child(3) .icon_wrapper {
  background-color: #e4ecd8;
}
.proposal_card:nth-child(4) .icon_wrapper {
  background-color: #f0e6d0;
}

.icon_wrapper {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
}

.title_card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.title_card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--foreground);
}

.proposal_card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-foreground);
}

/* ── HABITACIONES ── */
.rooms_section {
  width: 100%;
  padding: 60px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.rooms_article {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.rooms_characteristics {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  transition: 0.3s ease-in-out;
}

.rooms_characteristics:hover {
  background-color: var(--muted);
}

.icon_rooms {
  color: var(--background);
  padding: 10px;
  border-radius: var(--radius);
  font-size: 28px;
  background-color: var(--accent);
  min-width: 50px;
}

.h4_global {
  font-weight: 600;
  font-size: 16px;
  color: var(--foreground);
  margin-bottom: 4px;
}

.p_ch {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.rooms_cta {
  width: 100%;
  padding: 40px 48px;
  background-color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.rooms_cta_text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rooms_cta_text h3 {
  font-size: 22px;
  color: #ffffff;
}

.rooms_cta_text p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

/* ── MINI GALERÍA ── */
.rooms_gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}

.rooms_gallery_grid {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.gallery_item {
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery_item_big {
  grid-row: 1 / 3;
}
.gallery_item_video {
  grid-column: 2 / 4;
}

.gallery_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery_item:hover .gallery_img {
  transform: scale(1.04);
}

.gallery_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn_gallery_cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.btn_gallery_cta:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
}

/* ── POR QUÉ ELEGIRNOS ── */
.choice_section {
  width: 100%;
  padding: 80px 48px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  background-color: var(--card);
}

.reasons_articles {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}

.choice_left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.reasons_container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.reasons {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.reasons_icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
}

.reasons h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 6px;
}

.reasons p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.choice_quote {
  width: 340px;
  min-width: 300px;
  background-color: var(--primary);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.quote_mark {
  font-size: 56px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}

.choice_quote p {
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.75;
}

.choice_logos {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.logo_award {
  height: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition:
    filter 0.2s,
    transform 0.2s;
}

.logo_award:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ── ACTIVIDADES ── */
.activities_section {
  width: 100%;
  padding: 60px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.img_act {
  width: 60%;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(58, 58, 47, 0.15);
}

.img_act_bg {
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image:
    linear-gradient(
      to top,
      rgba(30, 40, 25, 0.75) 0%,
      rgba(30, 40, 25, 0.1) 60%,
      transparent 100%
    ),
    url(assets/img_background.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease-in-out;
}

.img_act_bg:hover {
  transform: scale(1.02);
}

.img_act h4 {
  font-size: 22px;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.img_act p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.activities_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.activities_card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  background-color: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(58, 58, 47, 0.05);
  transition:
    background-color 0.3s ease-in-out,
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
  cursor: pointer;
}

.activities_card:hover {
  background-color: var(--muted);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(58, 58, 47, 0.1);
}

.activities_icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background-color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--secondary);
  border: 1px solid rgba(212, 165, 116, 0.3);
  transition: background-color 0.3s ease-in-out;
}

.activities_card:hover .activities_icon {
  background-color: var(--secondary);
  color: #ffffff;
}

.activities_card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 4px;
  transition: color 0.3s ease-in-out;
}

.activities_card:hover h4 {
  color: var(--primary);
}

.activities_card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ── RESEÑAS ── */
.reviews_section {
  width: 100%;
  padding: 60px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  background-color: var(--muted);
}

.reviews_article {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.clients {
  display: flex;
  flex-direction: column;
}

.client_info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px;
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(58, 58, 47, 0.06);
  height: 100%;
  transition:
    transform 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out,
    border-color 0.3s ease-in-out;
}

.client_info:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(58, 58, 47, 0.12);
  border-color: var(--primary);
}

.client_info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.4;
}

.client_info p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted-foreground);
  font-style: italic;
  flex: 1;
}

.client_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.client_footer h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--foreground);
}

.client_country {
  font-size: 12px;
  color: var(--muted-foreground);
  margin-top: 2px;
  display: block;
}

.client_platform {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  padding: 4px 12px;
  background-color: var(--muted);
  border-radius: 20px;
}

/* ── SOSTENIBILIDAD ── */
.sustain_section {
  width: 100%;
  position: relative;
  padding: 80px 32px;
  background-image: url("assets/yacare.webp");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.sustain_overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 40, 25, 0.75);
}

.sustain_content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.sustain_title {
  color: #ffffff !important;
}

.sustain_mission {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.sustain_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sustain_card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.sustain_card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.sustain_icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--secondary);
}

.sustain_card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.sustain_card p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.sustain_section .line {
  background-color: var(--secondary);
}

/* ── EQUIPO ── */
.team_section {
  width: 100%;
  padding: 80px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  background-color: var(--background);
}

.team_article {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  background-color: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(58, 58, 47, 0.08);
  gap: 24px;
  transition: box-shadow 0.3s ease;
}

.team_article:hover {
  box-shadow: 0 8px 32px rgba(58, 58, 47, 0.13);
}

.team_article_title {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
}

.team_founders {
  width: 100%;
  display: grid;
  place-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.team_img {
  width: 280px;
  height: 280px;
  min-width: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--muted);
  box-shadow: 0 4px 16px rgba(58, 58, 47, 0.1);
}

.team_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  text-align: justify;
}

.team_text h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--foreground);
}

.team_text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted-foreground);
}

.team_role {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background-color: var(--muted);
  padding: 4px 14px;
  border-radius: 20px;
  width: fit-content;
}

/* ── STAFF ── */
.team_staff {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.team_staff_img.wide {
  width: 200px;
  object-position: 40%;
}
.team_staff p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted-foreground);
  max-width: 600px;
  text-align: center;
}

.team_staff_imgs {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.team_staff_img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--muted);
  box-shadow: 0 4px 12px rgba(58, 58, 47, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.team_staff_img:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(58, 58, 47, 0.15);
}
/* ── FAQ ── */
.faq_section {
  width: 100%;
  padding: 80px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background-color: var(--card);
}

.faq_container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq_item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq_item:hover {
  box-shadow: 0 4px 16px rgba(58, 58, 47, 0.08);
}

.faq_question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s ease;
}

.faq_question:hover {
  color: var(--primary);
}

.faq_icon {
  font-size: 18px;
  min-width: 18px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq_item.open .faq_icon {
  transform: rotate(180deg);
}

.faq_answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 24px;
}

.faq_item.open .faq_answer {
  max-height: 600px;
  padding: 0 24px 28px;
}

.faq_answer p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted-foreground);
  margin-bottom: 10px;
}

.faq_answer p:last-child {
  margin-bottom: 0;
}

.faq_answer ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 16px;
  margin-top: 10px;
}

.faq_answer ul li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-foreground);
  list-style: disc;
}

/* ══════════════════════════════
   RESPONSIVE — INDEX
══════════════════════════════ */

@media (max-width: 1024px) {
  .proposal_article {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* NAV */
  .header_container .nav__links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mob-menu {
    display: flex;
  }

  /* HERO */
  .h1_global {
    font-size: 34px;
    letter-spacing: 0;
  }
  .p_global {
    font-size: 14px;
  }
  .h3_global {
    font-size: 13px;
  }
  .hero_buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  /* GENERAL */
  .h2_global {
    font-size: 22px;
  }
  .p_ach_text {
    width: 95%;
    font-size: 13px;
  }
  .p_ach {
    font-size: 13px;
  }
  p {
    font-size: 13px;
  }

  /* PELLEGRINI */
  .pellegrini_img {
    width: 100%;
  }

  /* SECTIONS padding */
  .best_tourism_container,
  .proposal_section,
  .rooms_section,
  .choice_section,
  .activities_section,
  .reviews_section,
  .team_section,
  .faq_section {
    padding: 40px 20px;
  }

  /* PROPUESTA */
  .proposal_article {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .proposal_card {
    padding: 18px 16px;
  }
  .title_card h3 {
    font-size: 14px;
  }
  .proposal_card p {
    font-size: 12px;
  }
  .icon_wrapper {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* HABITACIONES */
  .rooms_article {
    grid-template-columns: 1fr;
  }
  .rooms_cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
  .rooms_cta_text h3 {
    font-size: 18px;
  }
  .rooms_cta_text p {
    font-size: 13px;
  }

  /* GALERÍA */
  .rooms_gallery_grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery_item_big {
    grid-row: auto;
    grid-column: 1 / 3;
  }
  .gallery_item_video {
    grid-column: 1 / 3;
  }
  .btn_gallery_cta {
    width: 100%;
    justify-content: center;
  }

  /* VIDEOS */
  .videos_grid {
    width: 100%;
    flex-direction: column;
  }

  /* POR QUÉ ELEGIRNOS */
  .choice_section {
    padding: 40px 20px;
    gap: 32px;
  }
  .reasons_articles {
    flex-direction: column;
    gap: 32px;
  }
  .choice_quote {
    width: 100%;
    padding: 28px 24px;
  }
  .choice_quote p {
    font-size: 16px;
  }
  .reasons h4 {
    font-size: 14px;
  }
  .reasons p {
    font-size: 13px;
  }
  .choice_logos {
    gap: 20px;
  }
  .logo_award {
    height: 70px;
  }

  /* ACTIVIDADES */
  .img_act {
    width: 100%;
    height: 260px;
  }
  .img_act h4 {
    font-size: 18px;
  }
  .activities_grid {
    grid-template-columns: 1fr;
  }
  .activities_card h4 {
    font-size: 13px;
  }
  .activities_card p {
    font-size: 12px;
  }

  /* RESEÑAS */
  .reviews_article {
    grid-template-columns: 1fr;
  }
  .client_info {
    padding: 24px 20px;
  }
  .client_info h3 {
    font-size: 14px;
  }
  .client_info p {
    font-size: 13px;
  }

  /* SOSTENIBILIDAD */
  .sustain_section {
    background-attachment: scroll;
    padding: 48px 20px;
  }
  .sustain_grid {
    grid-template-columns: 1fr;
  }
  .sustain_card {
    padding: 20px;
  }
  .sustain_card h4 {
    font-size: 14px;
  }
  .sustain_card p {
    font-size: 13px;
  }
  .sustain_mission {
    font-size: 13px;
  }

  /* EQUIPO */
  .team_section {
    padding: 48px 20px;
    gap: 32px;
  }

  .team_article {
    padding: 28px 20px;
    gap: 20px;
  }

  .team_founders {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team_img {
    width: 180px;
    height: 180px;
    min-width: 180px;
  }

  .team_text {
    text-align: center;
    align-items: center;
  }
  .team_text h3 {
    font-size: 20px;
  }
  .team_text p {
    font-size: 13px;
  }

  .team_staff_imgs {
    gap: 20px;
  }

  .team_staff_img {
    width: 110px;
    height: 110px;
  }

  .team_article_title {
    font-size: 18px;
  }
  /* FAQ */
  .faq_question {
    font-size: 13px;
    padding: 16px 18px;
  }
  .faq_answer p {
    font-size: 13px;
  }
  .faq_answer ul li {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .proposal_article {
    grid-template-columns: 1fr;
  }
  .h1_global {
    font-size: 28px;
  }
  .h2_global {
    font-size: 20px;
  }
  /* PELLEGRINI */
  .best_badge a {
    padding: 8px;
    font-size: 12px;
    text-align: center;
  }
}
