@charset "UTF-8";
/* ==================== FUENTES LOCALES ==================== */
@font-face {
  font-family: "GFS Didot";
  src: url("../assets/fonts/GFS_Didot/GFSDidot-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat/Montserrat-UltraLight.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat/Montserrat-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 62.5%; /* 1rem = 10px (16px * 0.625 = 10px) */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
  background-color: #ffffff;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

section {
  padding: 3rem 0;
  border-bottom: 1px solid #e9ecef;
}

h1, .h1 {
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2, .h2 {
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

h3, .h3 {
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

p {
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

small, .small {
  font-size: 0.875rem;
}

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #dee2e6;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.site-header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #343a40;
}

.main-nav ul {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.main-nav ul a {
  color: #495057;
  transition: color 0.2s;
}
.main-nav ul a:hover {
  color: #212529;
  text-decoration: underline;
}

.site-footer {
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  padding: 2rem 0;
  text-align: center;
  color: #6c757d;
}
.site-footer .social-links {
  margin-top: 1rem;
}
.site-footer .social-links a {
  margin: 0 0.5rem;
}
.site-footer .social-links a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background-color: #495057;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #212529;
}
.btn--secondary {
  background-color: #dee2e6;
  color: #343a40;
  border-color: #ced4da;
}
.btn--secondary:hover {
  background-color: #ced4da;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.pillars .pillar {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #dee2e6;
  text-align: center;
}
.pillars .pillar h3 {
  margin-bottom: 0.5rem;
}
.pillars .pillar p {
  margin-bottom: 0;
  color: #6c757d;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin-top: 1.5rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  background: #ffffff;
}
.contact-form button {
  align-self: flex-start;
}

.benefits {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.benefits li {
  margin-bottom: 0.5rem;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.news-list .news-item {
  background: #f8f9fa;
  padding: 1rem;
  border-left: 4px solid #adb5bd;
}

/* ==================== HERO CON VIDEO FULL SCREEN ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background-color: #343a40;
}
.hero .hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
}
.hero__title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 576px) {
  .hero__title {
    font-size: 1.8rem;
  }
}
.hero__subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 1.5rem auto;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
@media (min-width: 576px) {
  .hero__subtitle {
    font-size: 1rem;
  }
}
.hero__cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}
@media (min-width: 576px) {
  .hero__cta-group {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* ==================== QUIÉNES SOMOS (fondo color sólido) ==================== */
.about {
  background-color: #810f0f;
  color: #ffffff;
  position: relative;
}
.about .container {
  max-width: 800px;
  margin: 0 auto;
}
.about h2,
.about p {
  color: #ffffff;
}
.about p {
  opacity: 0.9;
}
.about .about-bottom-image {
  margin-top: 2.5rem;
  text-align: center;
}
.about .about-bottom-image img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 8px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* ==================== SECCIONES GENERALES (ancho máximo) ==================== */
.value-proposition .container,
.events .container,
.publications .container,
.journal .container,
.community .container,
.cta-final .container,
.board .container,
.membership .container,
.news .container {
  max-width: 800px;
  margin: 0 auto;
}

/* ==================== PÁGINAS INTERNAS ==================== */
.page-header {
  background: #f8f9fa;
  text-align: center;
  padding: 3rem 0;
  border-bottom: 1px solid #dee2e6;
}

/* ==================== CONSEJO DIRECTIVO (GRID RESPONSIVE) ==================== */
.board-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 992px) {
  .board-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.board-member {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s;
}
.board-member:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.board-member .member-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #dee2e6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.board-member .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.board-member h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.board-member .member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.board-member .member-social .social-link {
  font-size: 0.85rem;
  color: #6c757d;
  text-decoration: none;
}
.board-member .member-social .social-link:hover {
  color: #212529;
  text-decoration: underline;
}

/* ==================== MEMBRESÍA ==================== */
.membership .benefits {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.membership .benefits li {
  margin-bottom: 0.5rem;
}

/* ==================== EVENTOS, PUBLICACIONES, REVISTA ==================== */
.events .btn,
.publications .btn,
.journal .btn {
  margin-top: 1rem;
}

/* ==================== NOTICIAS (Tweets incrustados) ==================== */
.news .tweets-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.news .tweets-grid.scrollable {
  max-width: 1000px;
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.5rem;
}
.news .tweets-grid.scrollable::-webkit-scrollbar {
  width: 8px;
}
.news .tweets-grid.scrollable::-webkit-scrollbar-track {
  background: #e9ecef;
  border-radius: 4px;
}
.news .tweets-grid.scrollable::-webkit-scrollbar-thumb {
  background: #adb5bd;
  border-radius: 4px;
}
.news .tweets-grid.scrollable::-webkit-scrollbar-thumb:hover {
  background: #6c757d;
}
.news .tweets-grid .twitter-tweet {
  margin: 0 auto !important;
  max-width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: box-shadow 0.2s;
}
.news .tweets-grid .twitter-tweet:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

@media (min-width: 576px) {
  .news .tweets-grid.scrollable {
    max-height: 400px;
  }
}
/* ==================== COMUNIDAD ==================== */
.community {
  text-align: center;
}

/* ==================== CONTACTO CON IMAGEN DE FONDO CENTRADO ==================== */
.contact {
  position: relative;
  background-color: #343a40;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centra todo el bloque horizontalmente */
  text-align: center;
}
.contact .contact-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/img/CONTACTO.webp"); /* Ruta corregida */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.contact .contact-bg-wrapper .contact-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 1;
}
.contact .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto; /* Centrado horizontal */
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 1rem;
  box-sizing: border-box;
}
.contact h2,
.contact p {
  color: #ffffff;
  text-align: center;
}
.contact .contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 500px;
  margin: 1.5rem auto 0;
  width: 100%;
}
.contact .contact-form input,
.contact .contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 0.25rem;
  color: #343a40;
  box-sizing: border-box;
}
.contact .contact-form input::placeholder,
.contact .contact-form textarea::placeholder {
  color: #6c757d;
}
.contact .contact-form textarea {
  resize: vertical;
}
.contact .btn--primary {
  background-color: #ffffff;
  color: #343a40;
  align-self: center;
}
.contact .btn--primary:hover {
  background-color: #e9ecef;
}
.contact .colorRojo {
  background-color: #810f0f;
  color: #ffffff;
  align-self: center;
}
.contact .colorRojo:hover {
  background-color: #a11b1b;
}

@media (min-width: 576px) {
  .contact .container {
    padding: 1.5rem;
    margin: 0 1rem;
    width: auto;
  }
  .contact .contact-form {
    max-width: 100%;
  }
}
/* ==================== MENSAJE DE ÉXITO (FORMULARIO) ==================== */
.success-message {
  text-align: center;
  padding: 2rem;
  margin-top: 1rem;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.success-message .success-icon {
  font-size: 3rem;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #495057;
  color: white;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.success-message h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #343a40;
}
.success-message p {
  color: #6c757d;
  margin-bottom: 0;
}

/* ==================== AJUSTE DE SCROLL PARA SECCIONES CON HEADER FIJO ==================== */
section[id] {
  scroll-margin-top: 80px;
}

/* ==================== SECCIONES CON VIDEO DE FONDO ==================== */
.membership,
.community {
  position: relative;
  color: #ffffff;
  background-color: #343a40;
}
.membership .section-video-wrapper,
.community .section-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.membership .section-video,
.community .section-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.membership .section-overlay,
.community .section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.membership .container,
.community .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1rem;
}
.membership h2,
.membership p,
.membership li,
.membership a,
.membership .benefits,
.community h2,
.community p,
.community li,
.community a,
.community .benefits {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.membership .btn--primary,
.community .btn--primary {
  background-color: #ffffff;
  color: #343a40;
}
.membership .btn--primary:hover,
.community .btn--primary:hover {
  background-color: #e9ecef;
}
.membership .btn--secondary,
.community .btn--secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: #ffffff;
}
.membership .btn--secondary:hover,
.community .btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.membership .benefits,
.community .benefits {
  list-style: disc;
  padding-left: 1.5rem;
}

@media (min-width: 576px) {
  .membership .container,
  .community .container {
    padding: 3rem 1rem;
  }
}
@media (min-width: 768px) {
  .main-nav ul {
    gap: 1rem;
  }
  .pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  .site-header .container {
    flex-direction: column;
    gap: 0.5rem;
  }
  .main-nav ul {
    justify-content: center;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .hero__cta-group {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 250px;
  }
}
.pdf-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pdf-item {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pdf-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.pdf-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
  background: #dee2e6;
}

.pdf-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #343a40;
}

.btn-leer {
  background: #495057;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-leer:hover {
  background: #212529;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.modal-content input {
  width: 100%;
  padding: 0.5rem;
  margin: 0.5rem 0;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  background: #ffffff;
}
.modal-content button {
  margin-top: 1rem;
}

.pdf-viewer {
  margin-top: 2rem;
  border-top: 2px solid #dee2e6;
  padding-top: 2rem;
  display: none;
}
.pdf-viewer iframe {
  width: 100%;
  height: 600px;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  background: #f8f9fa;
}

.quienes-somos-intro,
.autorizacion-respaldo {
  border: none !important;
}

/* ==================== INTRO QUIÉNES SOMOS ==================== */
.quienes-somos-intro {
  position: relative;
  padding: 5rem 0;
  background-image: url("../assets/img/QuienesSomos_IMG/FONDOS/F_Mesa de trabajo 1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -2.5rem;
}
.quienes-somos-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.quienes-somos-intro .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.quienes-somos-intro .contenido-izquierda {
  max-width: 100%;
  padding: 2rem;
  border-radius: 1rem;
  margin: 0 auto;
  text-align: center;
}
.quienes-somos-intro .intro-header {
  margin-bottom: 2rem;
}
.quienes-somos-intro .intro-header h1 {
  position: relative;
  font-size: 10rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  font-weight: 400;
  color: #ffffff;
}
.quienes-somos-intro .intro-header h1 .break {
  display: block;
}
.quienes-somos-intro .intro-header h1::after {
  content: "";
  display: block;
  width: 8rem;
  height: 0.3rem;
  background-color: #c28c3a;
  margin: 1.5rem auto 0;
}
@media (min-width: 576px) {
  .quienes-somos-intro .intro-header h1 {
    font-size: 12rem;
  }
}
.quienes-somos-intro .intro-header .intro-lead {
  font-size: 2.2rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
}
.quienes-somos-intro .pilares-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.quienes-somos-intro .pilares-grid .pilar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: left;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  position: relative;
}
.quienes-somos-intro .pilares-grid .pilar .pilar-icon {
  width: 10rem;
  height: auto;
}
.quienes-somos-intro .pilares-grid .pilar h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .quienes-somos-intro .pilares-grid .pilar:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -0.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.2rem;
    height: 60%;
    background-color: #741417;
    border-radius: 0.2rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .quienes-somos-intro .contenido-izquierda {
    max-width: 70%;
    margin: 0 auto;
    text-align: center;
  }
  .quienes-somos-intro .pilares-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 992px) {
  .quienes-somos-intro .contenido-izquierda {
    max-width: 50%;
    margin: 0;
    text-align: left;
    padding: 0;
  }
  .quienes-somos-intro .pilares-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  .quienes-somos-intro .intro-lead {
    margin-left: 0;
    margin-right: 0;
  }
  .quienes-somos-intro .intro-header h1::after {
    margin: 1.5rem 0 0;
  }
}

/* ==================== AUTORIZACIÓN Y RESPALDO INSTITUCIONAL ==================== */
.autorizacion-respaldo {
  padding: 10rem 0;
  background-color: #f6f4f2;
  background-image: url("../assets/img/QuienesSomos_IMG/FONDOS/F-02.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.autorizacion-respaldo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.autorizacion-respaldo .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.autorizacion-respaldo .header-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
@media (min-width: 576px) {
  .autorizacion-respaldo .header-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }
}
.autorizacion-respaldo .emoji-wrapper {
  flex-shrink: 0;
}
.autorizacion-respaldo .emoji-wrapper .emoji-scroll {
  width: 15rem;
  height: auto;
  display: block;
}
.autorizacion-respaldo .title-wrapper {
  flex: 1;
}
.autorizacion-respaldo .title-wrapper h2 {
  font-size: 6rem;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  font-weight: 400;
  color: #000000;
  margin-bottom: 0;
  line-height: 1.2;
  text-align: left;
}
.autorizacion-respaldo .title-wrapper h2 .title-line {
  display: block;
}
.autorizacion-respaldo .title-wrapper h2 .vino {
  color: #741417;
}
.autorizacion-respaldo .title-separator {
  width: 8rem;
  height: 0.3rem;
  background-color: #c28c3a;
  margin: 1rem 0 0;
}
.autorizacion-respaldo .two-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .autorizacion-respaldo .two-columns {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
}
.autorizacion-respaldo .col-texto {
  flex: 2;
}
.autorizacion-respaldo .col-texto p {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 1rem;
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 0.5rem;
}
.autorizacion-respaldo .col-botones {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .autorizacion-respaldo .col-botones {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    align-items: stretch;
  }
}
.autorizacion-respaldo .boton-pdf {
  width: 100%;
  max-width: 22rem;
  aspect-ratio: 4/5;
  background: none;
  border: 0.2rem solid #c28c3a;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
}
.autorizacion-respaldo .boton-pdf:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.15);
}
.autorizacion-respaldo .boton-pdf .pdf-thumbnail {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.autorizacion-respaldo .boton-pdf span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  padding: 0 0.5rem;
  font-weight: 500;
  text-align: center;
  color: #1c1c1e;
}
@media (min-width: 768px) {
  .autorizacion-respaldo .boton-pdf {
    width: 30rem;
    max-width: none;
  }
}

/* ==================== RECONOCIMIENTOS ==================== */
.reconocimientos {
  background-color: #741417;
  padding: 1rem 0;
  border: none;
}
.reconocimientos .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.reconocimientos .reconocimientos-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .reconocimientos .reconocimientos-grid {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.reconocimientos .item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .reconocimientos .item {
    width: auto;
    flex: 1;
    min-width: 15rem;
    padding: 1rem 0.5rem;
  }
}
.reconocimientos .item .item-icon {
  width: 5rem;
  height: auto;
  flex-shrink: 0;
  display: inline-block;
  line-height: 1;
}
.reconocimientos .item p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-align: left;
}
.reconocimientos .item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.5rem;
  top: 15%;
  height: 70%;
  width: 0.2rem;
  background-color: #c28c3a;
  border-radius: 0.1rem;
}
@media (min-width: 768px) {
  .reconocimientos .item:not(:last-child)::after {
    display: block;
  }
}
@media (max-width: 767px) {
  .reconocimientos .item:not(:last-child)::after {
    display: none;
  }
}

/* ==================== SECCIÓN IMAGEN DE FONDO ==================== */
.seccion-imagen-fondo {
  min-height: 88rem;
  background-image: url("../assets/img/QuienesSomos/FotoOMCA.jpg"); /* Cambia por tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1c1c1e; /* fallback */
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.seccion-imagen-fondo .container {
  text-align: center;
  color: #ffffff;
}

.seccion-imagen-fondo,
.seccion-imagen-fondo_2 {
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s ease, transform 1s ease;
}
.seccion-imagen-fondo::before,
.seccion-imagen-fondo_2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease 0.2s;
}
.seccion-imagen-fondo.visible,
.seccion-imagen-fondo_2.visible {
  opacity: 1;
  transform: scale(1);
}
.seccion-imagen-fondo.visible::before,
.seccion-imagen-fondo_2.visible::before {
  opacity: 1;
}

/* ==================== CONVENIOS Y ALIANZAS ==================== */
.convenios {
  padding: 7rem 0;
  position: relative;
  background-color: #f6f4f2;
  background-image: url("../assets/img/QuienesSomos_IMG/FONDOS/F-03.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.convenios .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.convenios h2 {
  font-size: 5.2rem;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  font-weight: 400;
  color: #1c1c1e;
  text-align: left;
  margin-bottom: 1.5rem;
}
.convenios h2::after {
  content: "";
  display: block;
  width: 8rem;
  height: 0.3rem;
  background-color: #c28c3a;
  margin-top: 1rem;
  border-radius: 2px;
}
.convenios .convenios-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.convenios .convenios-intro {
  font-size: 1.7rem;
  line-height: 1.6;
  color: #000000;
  text-align: left;
  max-width: 800px;
  margin: 0 0 3rem 0;
  padding: 1.5rem;
  border-radius: 0.5rem;
}
.convenios .convenio-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background-color: #741417;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  text-align: left;
  max-width: 70rem; /* Ajusta este valor a tu gusto */
  width: 100%;
  margin: 0;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (min-width: 768px) {
  .convenios .convenio-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    width: auto;
  }
}
.convenios .convenio-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.convenios .convenio-emoji {
  width: 5rem;
  height: auto;
  flex-shrink: 0;
  line-height: 1;
}
@media (min-width: 768px) {
  .convenios .convenio-emoji {
    font-size: 2.5rem;
  }
}
.convenios .convenio-line {
  width: 100%;
  height: 2px;
  background-color: #c28c3a;
  flex-shrink: 0;
  border-radius: 1px;
}
@media (min-width: 768px) {
  .convenios .convenio-line {
    width: 2px;
    height: 3.5rem;
  }
}
.convenios .convenio-texto {
  flex: 1;
  width: 100%;
}
.convenios .convenio-texto h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.3rem;
}
.convenios .convenio-texto p {
  font-size: 1rem;
  color: #f6f4f2;
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .convenios .convenio-texto {
    width: auto;
  }
}
.convenios .btn-convenio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background-color: transparent;
  border: 1px solid #741417;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
  transition: background-color 0.2s, transform 0.2s, color 0.2s;
  white-space: normal;
  text-align: left;
}
.convenios .btn-convenio:hover {
  background-color: #741417;
  color: #ffffff;
  transform: scale(1.02);
}
.convenios .btn-convenio .btn-emoji {
  width: 3rem;
  height: auto;
  line-height: 1;
}
@media (min-width: 768px) {
  .convenios .btn-convenio {
    width: auto;
    padding: 0.6rem 1.5rem;
  }
}
.convenios .vino {
  color: #741417;
}

/* ==================== TEXTO DE CIERRE ==================== */
.texto-cierre {
  background-color: #741417;
  padding: 3rem 1rem;
  border: none;
  margin: 0;
}
.texto-cierre .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.texto-cierre p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  line-height: 1.5;
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== PACTO FUNDACIONAL OMCA ==================== */
.pacto-fundacional {
  padding: 8rem 0;
  background-color: #741417;
  color: #ffffff;
  background-image: url("../assets/img/QuienesSomos_IMG/FONDOS/F-04.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-height: 100rem;
}
.pacto-fundacional .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.pacto-fundacional .pacto-header {
  margin-bottom: 3rem;
}
.pacto-fundacional .pacto-header h2 {
  font-size: 7rem;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .pacto-fundacional .pacto-header h2 {
    text-align: left;
  }
}
.pacto-fundacional .pacto-header h2 .oro {
  color: #c28c3a;
}
.pacto-fundacional .pacto-header .pacto-line-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .pacto-fundacional .pacto-header .pacto-line-wrapper {
    justify-content: flex-start;
  }
}
.pacto-fundacional .pacto-header .pacto-circle {
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #c28c3a;
  border-radius: 50%;
  flex-shrink: 0;
}
.pacto-fundacional .pacto-header .pacto-line {
  flex: 1;
  height: 2px;
  background-color: #c28c3a;
  border-radius: 2px;
  max-width: 120px;
}
@media (min-width: 768px) {
  .pacto-fundacional .pacto-header .pacto-line {
    max-width: 200px;
  }
}
.pacto-fundacional .pacto-frase-inicial {
  font-size: 4rem;
  font-weight: 400;
  color: #ffffff;
  text-align: left;
  margin-bottom: 6rem;
  opacity: 0.9;
  max-width: 800px;
  padding-left: 2rem;
}
@media (min-width: 576px) {
  .pacto-fundacional .pacto-frase-inicial {
    font-size: 2rem;
    padding-left: 0;
    text-align: left;
  }
}
.pacto-fundacional .pacto-contenido {
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .pacto-fundacional .pacto-contenido {
    margin: 0;
  }
}
.pacto-fundacional .pacto-cita {
  position: relative;
  margin-bottom: 2rem;
  padding: 0 3rem 0 4rem;
}
.pacto-fundacional .pacto-cita .comillas-apertura {
  font-size: 10rem;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #c28c3a;
  opacity: 0.6;
  line-height: 0.8;
  position: absolute;
  top: -0.5rem;
  left: -1rem;
}
.pacto-fundacional .pacto-cita .pacto-texto-principal {
  font-size: 2.5rem;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  line-height: 1.6;
  color: #ffffff;
  text-align: left;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  max-width: 62rem;
}
@media (min-width: 576px) {
  .pacto-fundacional .pacto-cita .pacto-texto-principal {
    font-size: 3rem;
  }
}
.pacto-fundacional .pacto-cita .comillas-cierre {
  font-size: 10rem;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #c28c3a;
  opacity: 0.6;
  line-height: 1;
  display: inline-block;
  margin-left: 60rem;
  position: relative;
  bottom: 5rem;
}
.pacto-fundacional .pacto-separator {
  width: 100%;
  max-width: 80rem;
  height: 2px;
  background-color: #c28c3a;
  margin: 2rem auto;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .pacto-fundacional .pacto-separator {
    margin: 2rem 0;
    max-width: 70rem;
    margin-top: -5rem;
  }
}
.pacto-fundacional .pacto-pilares {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 70rem;
}
@media (min-width: 768px) {
  .pacto-fundacional .pacto-pilares {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
}
.pacto-fundacional .pacto-pilar {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: background 0.2s;
  position: relative;
  width: 100%;
}
.pacto-fundacional .pacto-pilar .pilar-emoji {
  width: 7rem;
  height: auto;
  margin: 0 auto;
  margin-bottom: 0.5rem;
  display: block;
}
.pacto-fundacional .pacto-pilar .pilar-texto {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  text-align: left;
}
@media (min-width: 768px) {
  .pacto-fundacional .pacto-pilar {
    text-align: left;
    padding: 1rem 1.2rem;
  }
  .pacto-fundacional .pacto-pilar .pilar-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .pacto-fundacional .pacto-pilar:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 2px;
    background-color: #c28c3a;
    border-radius: 1px;
  }
}
.pacto-fundacional .pacto-download-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.5rem;
}
@media (min-width: 576px) {
  .pacto-fundacional .pacto-download-wrapper {
    justify-content: center;
  }
}
.pacto-fundacional .pacto-download-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.5rem;
}
@media (min-width: 576px) {
  .pacto-fundacional .pacto-download-wrapper {
    justify-content: right;
  }
}
.pacto-fundacional .btn-download-pacto {
  margin-top: -8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.7rem 2rem;
  background-color: #741417;
  border: 2px solid #c28c3a;
  border-radius: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  max-width: 35rem;
  width: 100%;
}
.pacto-fundacional .btn-download-pacto:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(194, 140, 58, 0.3);
}
.pacto-fundacional .btn-download-pacto .btn-icon {
  width: 4rem;
  height: auto;
  line-height: 1;
  flex-shrink: 0;
}
.pacto-fundacional .btn-download-pacto .btn-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
  flex: 1;
}
.pacto-fundacional .btn-download-pacto .btn-text-main {
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
}
.pacto-fundacional .btn-download-pacto .btn-text-sub {
  font-size: 1.2rem;
  font-weight: 400;
  color: #c28c3a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pacto-fundacional .btn-download-pacto .btn-icon-download {
  width: 3.5rem;
  height: auto;
  line-height: 1;
  flex-shrink: 0;
  color: #ffffff;
}
@media (min-width: 576px) {
  .pacto-fundacional .btn-download-pacto {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
  }
  .pacto-fundacional .btn-download-pacto .btn-text-main {
    font-size: 2rem;
  }
  .pacto-fundacional .btn-download-pacto .btn-text-sub {
    font-size: 1.2rem;
  }
}

/* ==================== ACTO SOLEMNE ==================== */
.acto-solemne {
  padding: 4rem 0;
  margin-bottom: -4.5rem;
  background-color: #f6f4f2;
  color: #1c1c1e;
}
.acto-solemne .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.acto-solemne .acto-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .acto-solemne .acto-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}
.acto-solemne .acto-emoji-wrapper {
  flex-shrink: 0;
  margin-top: -1rem;
}
@media (min-width: 768px) {
  .acto-solemne .acto-emoji-wrapper {
    margin-top: -6rem;
  }
}
.acto-solemne .acto-emoji {
  width: 12rem;
  height: auto;
  line-height: 1;
  display: block;
  color: #c28c3a;
}
@media (min-width: 768px) {
  .acto-solemne .acto-emoji {
    font-size: 10rem;
  }
}
.acto-solemne .acto-text-wrapper {
  flex: 1;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .acto-solemne .acto-text-wrapper::before {
    content: "";
    position: absolute;
    left: -1rem;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #c28c3a;
    border-radius: 2px;
  }
}
.acto-solemne .acto-text {
  padding-left: 0;
}
@media (min-width: 768px) {
  .acto-solemne .acto-text {
    padding-left: 1rem;
  }
}
.acto-solemne .acto-text .acto-text-small {
  font-size: 1rem;
  font-weight: 400;
  color: #1c1c1e;
  margin: 0 0 0.3rem 0;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .acto-solemne .acto-text .acto-text-small {
    font-size: 1.4rem;
  }
}
.acto-solemne .acto-text .acto-text-large {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #1c1c1e;
  margin: 0;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .acto-solemne .acto-text .acto-text-large {
    font-size: 1.55rem;
  }
}
.acto-solemne .acto-separator {
  display: block;
  width: 60px;
  height: 3px;
  background-color: #c28c3a;
  margin: 1rem auto;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .acto-solemne .acto-separator {
    display: none;
  }
}

/* ==================== SECCIÓN IMAGEN DE FONDO ==================== */
.seccion-imagen-fondo_2 {
  min-height: 80rem; /* 1080px si usas base 10px */
  background-image: url("../assets/img/QuienesSomos/FotoOMCA_2.jpg"); /* Cambia por tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1c1c1e; /* fallback */
  border: none;
  margin: 0;
  padding: 0;
}

/* ==================== VISIÓN, MISIÓN Y FILOSOFÍA ==================== */
.mision-vision-filosofia {
  padding: 12rem 0;
  background-image: url("../assets/img/QuienesSomos_IMG/FONDOS/F-05.webp"); /* Cambia por tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1c1c1e; /* fallback */
  color: #1c1c1e;
}
.mision-vision-filosofia .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.mision-vision-filosofia .section-header {
  text-align: left;
  margin-bottom: 1.5rem;
}
.mision-vision-filosofia .section-header h2 {
  font-size: 3.5rem;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  font-weight: 400;
  color: #1c1c1e;
  margin-bottom: 0.5rem;
}
.mision-vision-filosofia .section-header h2 .filosofia-oro {
  color: #c28c3a;
}
.mision-vision-filosofia .section-header .header-separator {
  width: 80px;
  height: 3px;
  background-color: #c28c3a;
  border-radius: 2px;
  margin: 0.5rem 0 0;
}
.mision-vision-filosofia .intro-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #6b6b6b;
  text-align: left;
  max-width: 800px;
  margin: 0 0 8rem 0;
  padding: 0;
}
.mision-vision-filosofia .cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .mision-vision-filosofia .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
  }
}
.mision-vision-filosofia .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 0 1.5rem 2rem;
  border: 1px solid #dee2e6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}
.mision-vision-filosofia .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.mision-vision-filosofia .card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #c28c3a;
  border-radius: 0 0 1rem 1rem;
}
.mision-vision-filosofia .card .card-emoji-wrapper {
  margin-top: -2.5rem;
  margin-bottom: 1rem;
}
.mision-vision-filosofia .card .card-emoji-circle {
  width: 10rem;
  height: 10rem;
  background-color: #741417;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.mision-vision-filosofia .card .card-emoji {
  width: 6rem;
  height: auto;
  line-height: 1;
  color: #ffffff;
}
.mision-vision-filosofia .card .card-title {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #741417;
  margin: 0.5rem 0;
  letter-spacing: 0.1em;
}
.mision-vision-filosofia .card .card-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 60%;
  margin: 0.5rem auto 1.5rem;
}
.mision-vision-filosofia .card .card-separator .card-sep-line {
  flex: 1;
  height: 2px;
  background-color: #c28c3a;
  border-radius: 2px;
}
.mision-vision-filosofia .card .card-separator .card-sep-dot {
  width: 8px;
  height: 8px;
  background-color: #c28c3a;
  border-radius: 50%;
  flex-shrink: 0;
}
.mision-vision-filosofia .card .card-text {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: justify;
  margin: 3rem;
  padding: 0 0.5rem;
  flex: 1;
  width: 100%;
}
.mision-vision-filosofia .card .card-text .card-text-emoji {
  width: 9rem;
  height: auto;
  flex-shrink: 0;
  line-height: 1.4;
  margin-top: 0.2rem;
}
.mision-vision-filosofia .card .card-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
  flex: 1;
}
@media (min-width: 576px) {
  .mision-vision-filosofia .section-header h2 {
    font-size: 9rem;
  }
  .mision-vision-filosofia .intro-text {
    font-size: 2rem;
    margin-bottom: 9rem;
  }
  .mision-vision-filosofia .card {
    padding: 0 1rem 1.5rem;
  }
  .mision-vision-filosofia .card .card-emoji-circle {
    width: 10rem;
    height: 10rem;
  }
  .mision-vision-filosofia .card .card-emoji {
    font-size: 2.2rem;
  }
  .mision-vision-filosofia .card .card-title {
    font-size: 2.2rem;
  }
  .mision-vision-filosofia .card .card-text {
    gap: 0.5rem;
  }
  .mision-vision-filosofia .card .card-text .card-text-emoji {
    font-size: 8rem;
  }
  .mision-vision-filosofia .card .card-text p {
    font-size: 1.3rem;
  }
  .mision-vision-filosofia .card .card-separator {
    width: 70%;
  }
}

/* ==================== VALORES FUNDAMENTALES ==================== */
.valores {
  padding: 12rem 0;
  background-color: #f6f4f2;
  color: #1c1c1e;
  margin-top: -0.5rem;
  background-image: url("../assets/img/QuienesSomos_IMG/FONDOS/F-07.webp"); /* Cambia por tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #1c1c1e; /* fallback */
}
.valores .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.valores .valores-header {
  text-align: left;
  margin-bottom: 1.5rem;
}
.valores .valores-header h2 {
  font-size: 3.5rem;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.valores .valores-header h2 .fundamentales-oro {
  color: #c28c3a;
}
.valores .valores-header .valores-separator {
  width: 80px;
  height: 3px;
  background-color: #c28c3a;
  border-radius: 2px;
  margin: 0.5rem 0 0;
}
.valores .valores-intro {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ffffff;
  text-align: left;
  max-width: 800px;
  margin: 0 0 3rem 0;
  padding: 0;
}
.valores .valores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .valores .valores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .valores .valores-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .valores .valores-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}
.valores .valor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 1rem;
  padding: 1.5rem 1rem 2rem;
  border: 1px solid #c28c3a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}
.valores .valor-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 8px 24px rgb(0, 0, 0);
}
.valores .valor-card .valor-number-circle {
  width: 2.8rem;
  height: 2.8rem;
  background-color: #c28c3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.valores .valor-card .valor-number-circle .valor-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.valores .valor-card .valor-bg-circle {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: -0.8rem;
}
.valores .valor-card .valor-bg-circle .valor-emoji {
  width: 5rem;
  height: auto;
  line-height: 1;
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.valores .valor-card .valor-bg-circle .valor-bg-circle-border {
  position: absolute;
  width: calc(90% + 8px);
  height: calc(90% + 8px);
  border-radius: 50%;
  border: 1px solid #c28c3a;
  box-sizing: border-box;
  z-index: 1;
}
.valores .valor-card .valor-title {
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #ffffff;
  margin: 0.5rem 0;
  line-height: 1.3;
}
.valores .valor-card .valor-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 60%;
  margin: 0.5rem auto 1.5rem;
}
.valores .valor-card .valor-separator .valor-sep-line {
  flex: 1;
  height: 2px;
  background-color: #c28c3a;
  border-radius: 2px;
}
.valores .valor-card .valor-separator .valor-sep-dot {
  width: 8px;
  height: 8px;
  background-color: #c28c3a;
  border-radius: 50%;
  flex-shrink: 0;
}
.valores .valor-card .valor-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ffffff;
  text-align: center;
  margin: 0;
  padding: 0 0.5rem;
  flex: 1;
}
@media (min-width: 576px) {
  .valores .valores-header h2 {
    font-size: 7.5rem;
  }
  .valores .valores-intro {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .valores .valor-card {
    padding: 1.5rem 1rem;
    gap: 2rem;
  }
  .valores .valor-card .valor-number-circle {
    width: 2.5rem;
    height: 2.5rem;
  }
  .valores .valor-card .valor-number-circle .valor-number {
    font-size: 1.2rem;
  }
  .valores .valor-card .valor-bg-circle {
    width: 8rem;
    height: 8rem;
    margin-top: -0.5rem;
  }
  .valores .valor-card .valor-bg-circle .valor-emoji {
    font-size: 2.2rem;
  }
  .valores .valor-card .valor-title {
    font-size: 2.2rem;
  }
  .valores .valor-card .valor-text {
    font-size: 1.2rem;
  }
}

/* ==================== VALORES: COMPROMISOS ==================== */
.valores-compromisos {
  padding: 4rem 0;
  background-color: #741417;
  color: #ffffff;
  margin-top: -0.5rem;
}
.valores-compromisos .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.valores-compromisos .compromiso-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .valores-compromisos .compromiso-content {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}
.valores-compromisos .compromiso-emoji {
  flex-shrink: 0;
  width: 10rem;
  height: auto;
  line-height: 1;
}
@media (min-width: 768px) {
  .valores-compromisos .compromiso-emoji {
    width: 10rem;
  }
}
.valores-compromisos .compromiso-line {
  width: 60px;
  height: 3px;
  background-color: #c28c3a;
  border-radius: 2px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .valores-compromisos .compromiso-line {
    width: 3px;
    height: 80px;
  }
}
.valores-compromisos .compromiso-text {
  flex: 1;
  text-align: center;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
}
@media (min-width: 768px) {
  .valores-compromisos .compromiso-text {
    text-align: left;
  }
}
.valores-compromisos .compromiso-text .compromiso-text-small {
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 0.3rem 0;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .valores-compromisos .compromiso-text .compromiso-text-small {
    font-size: 1.8rem;
  }
}
.valores-compromisos .compromiso-text .compromiso-text-large {
  font-size: 1.6rem;
  font-weight: 400;
  color: #c28c3a;
  margin: 0;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .valores-compromisos .compromiso-text .compromiso-text-large {
    font-size: 2.5rem;
  }
}

/* ==================== UNIMOS TALENTO ==================== */
.unimos-talento {
  padding: 10rem 0;
  background-color: #741417;
  color: #ffffff;
  margin-top: -0.5rem;
  background-image: url("../assets/img/QuienesSomos_IMG/FONDOS/F-06.webp"); /* Cambia por tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.unimos-talento .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.unimos-talento .unimos-header {
  text-align: left;
  margin-bottom: 1.5rem;
}
.unimos-talento .unimos-header h2 {
  font-size: 6rem;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.unimos-talento .unimos-header h2 .amarillo {
  color: #c28c3a;
}
.unimos-talento .unimos-header .unimos-separator {
  width: 80px;
  height: 3px;
  background-color: #c28c3a;
  border-radius: 2px;
  margin: 0.5rem 0 0;
}
.unimos-talento .unimos-intro {
  font-size: 2rem;
  line-height: 1.6;
  color: #ffffff;
  text-align: left;
  max-width: 800px;
  margin: 0 0 3rem 0;
  padding: 0;
  opacity: 0.9;
}
.unimos-talento .unimos-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  margin-top: 8rem;
}
@media (min-width: 992px) {
  .unimos-talento .unimos-content-wrapper {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
}
.unimos-talento .unimos-pilares-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  flex: 2;
}
@media (min-width: 768px) {
  .unimos-talento .unimos-pilares-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .unimos-talento .unimos-pilares-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.unimos-talento .pilar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem;
  position: relative;
  gap: 2rem;
}
@media (min-width: 992px) {
  .unimos-talento .pilar-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -0.75rem;
    top: 10%;
    height: 80%;
    width: 2px;
    background-color: #c28c3a;
    border-radius: 1px;
  }
}
.unimos-talento .pilar-item .pilar-circle {
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  background-color: transparent;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.unimos-talento .pilar-item .pilar-circle:hover {
  transform: scale(1.05);
}
.unimos-talento .pilar-item .pilar-circle .pilar-emoji {
  width: 11rem;
  height: auto;
  line-height: 1;
  color: #ffffff;
}
.unimos-talento .pilar-item .pilar-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #c28c3a;
  margin: 0.5rem 0;
  letter-spacing: 0.05em;
}
.unimos-talento .pilar-item .pilar-text {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
  opacity: 0.9;
}
.unimos-talento .unimos-cta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .unimos-talento .unimos-cta {
    padding-top: 0;
  }
}
.unimos-talento .cta-text {
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  font-weight: 400;
}
.unimos-talento .cta-text .cta-small {
  font-size: 2.3rem;
  color: #ffffff;
  margin: 0 0 0.3rem 0;
  line-height: 1.3;
}
.unimos-talento .cta-text .cta-large {
  font-size: 2.3rem;
  color: #c28c3a;
  margin: 0;
  line-height: 1.3;
}
.unimos-talento .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .unimos-talento .cta-buttons {
    flex-direction: row;
    width: auto;
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .unimos-talento .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
}
.unimos-talento .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.8rem 1.8rem;
  border-radius: 0.5rem;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  flex: 1;
}
.unimos-talento .btn-cta .btn-emoji {
  width: 5rem;
  height: auto;
  line-height: 1;
}
.unimos-talento .btn-cta .btn-arrow {
  width: 5rem;
  height: auto;
  line-height: 1;
}
.unimos-talento .btn-cta:hover {
  transform: scale(1.02);
}
.unimos-talento .btn-cta-primary {
  background-color: #c28c3a;
  color: #1c1c1e;
  border: 2px solid #c28c3a;
}
.unimos-talento .btn-cta-primary:hover {
  box-shadow: 0 4px 12px rgba(194, 140, 58, 0.3);
}
.unimos-talento .btn-cta-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #c28c3a;
}
.unimos-talento .btn-cta-secondary:hover {
  background-color: rgba(194, 140, 58, 0.15);
  box-shadow: 0 4px 12px rgba(194, 140, 58, 0.2);
}
@media (min-width: 576px) {
  .unimos-talento .btn-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ==================== HEADER DINÁMICO ==================== */
/* ==================== HEADER DINÁMICO ==================== */
.top-bar {
  background-color: #741417;
  color: #ffffff;
  padding: 0.2rem 0;
  font-size: 1rem;
}
.top-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.top-bar .top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.5rem;
}
.top-bar .top-bar-left .whatsapp-icon {
  width: 2rem;
  height: auto;
}
.top-bar .top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.top-bar .top-bar-right .social-link {
  width: 1.5rem;
  height: auto;
}
.top-bar .top-bar-right .social-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.top-bar .top-bar-right .separator {
  width: 1px;
  height: 14px;
  background-color: #c28c3a;
}
@media (min-width: 768px) {
  .top-bar .container {
    flex-direction: row;
    justify-content: space-between;
  }
  .top-bar .top-bar-right {
    justify-content: flex-end;
  }
}

.main-header {
  background-color: #ffffff;
  padding: 0.3rem 0;
  border-bottom: 2px solid #dee2e6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  flex-wrap: wrap;
}
.main-header .logo {
  display: flex;
  align-items: center;
}
.main-header .logo img {
  height: 10rem !important;
  width: auto !important;
  display: block;
}
.main-header .hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
}
.main-header .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1c1c1e;
  border-radius: 2px;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .main-header .hamburger {
    display: none;
  }
}
.main-header .main-nav {
  display: none;
  flex-direction: column;
  width: 100%;
  padding-top: 0.5rem;
}
.main-header .main-nav.active {
  display: flex;
}
.main-header .main-nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.3rem;
  width: 100%;
}
.main-header .main-nav ul li {
  position: relative;
  width: 100%;
}
.main-header .main-nav ul li > a {
  color: #1c1c1e;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
  transition: color 0.2s;
}
.main-header .main-nav ul li > a:hover {
  color: #741417;
}
.main-header .main-nav ul li > a .dropdown-arrow {
  display: inline-block;
  font-size: 2rem;
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #c28c3a;
  margin-left: 0.2rem;
  transition: transform 0.2s;
  transform: scaleY(0.7);
  transform-origin: center;
}
.main-header .main-nav ul li .dropdown-menu {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  gap: 0.2rem;
}
.main-header .main-nav ul li .dropdown-menu a {
  display: block;
  padding: 0.3rem 0.5rem;
  color: #1c1c1e;
  text-decoration: none;
  font-size: 0.85rem;
  border-bottom: none;
}
.main-header .main-nav ul li .dropdown-menu a:hover {
  color: #741417;
  background: #f8f9fa;
}
.main-header .main-nav ul li.open .dropdown-menu {
  display: flex;
}
.main-header .main-nav .btn-unete {
  background-color: #741417;
  color: #ffffff;
  padding: 0.5rem 1.2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
  margin-top: 0.3rem;
}
.main-header .main-nav .btn-unete:hover {
  transform: scale(1.02);
}
.main-header .main-nav .btn-unete .btn-arrow {
  display: inline-block;
  font-size: 1.5rem;
  transition: transform 0.2s;
  transform: scaleX(0.6);
}
.main-header .main-nav .btn-unete .btn-unete:hover .btn-arrow {
  transform: scaleX(0.6) translateX(10px);
}
@media (min-width: 768px) {
  .main-header .main-nav {
    display: flex !important;
    flex-direction: row;
    width: auto;
    padding-top: 0;
    align-items: center;
    gap: 1.5rem;
  }
  .main-header .main-nav ul {
    flex-direction: row;
    gap: 1.2rem;
    width: auto;
  }
  .main-header .main-nav ul li {
    width: auto;
  }
  .main-header .main-nav ul li > a {
    border-bottom: none;
    padding: 0.3rem 0;
    justify-content: flex-start;
    gap: 0.2rem;
    font-size: 1.6rem;
    font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  }
  .main-header .main-nav ul li .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    border: 1px solid #e9ecef;
    display: none;
  }
  .main-header .main-nav ul li .dropdown-menu a {
    padding: 0.5rem 1.2rem;
    font-size: 1.2rem;
    border-bottom: none;
    background: #ffffff;
  }
  .main-header .main-nav ul li:hover .dropdown-menu {
    display: block;
  }
  .main-header .main-nav .btn-unete {
    width: auto;
    margin-top: 0;
    padding: 0.5rem 1.5rem;
  }
}

/* ==================== FOOTER ==================== */
.site-footer {
  background-color: #ffffff;
  color: #1c1c1e;
  padding: 3rem 0 0;
  font-size: 1rem;
}
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 8rem;
  margin-bottom: 5rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}
.site-footer .footer-col h4 {
  font-size: 1.7rem;
  font-weight: 700;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #741417;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  position: relative;
}
.site-footer .footer-col h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #c28c3a;
  margin-top: 0.5rem;
  border-radius: 2px;
}
.site-footer .footer-col:first-child h4::after, .site-footer .footer-col:last-child h4::after {
  display: none;
}
.site-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.site-footer .footer-col ul li {
  margin-bottom: 0.75rem;
}
.site-footer .footer-col ul li a {
  color: #1c1c1e;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 1.5rem;
}
.site-footer .footer-col ul li a .arrow {
  color: #c28c3a;
  margin-right: 0.4rem;
}
.site-footer .footer-col ul li a:hover {
  color: #741417;
  text-decoration: underline;
}
.site-footer .footer-col {
  /* Líneas verticales amarillas solo en escritorio */
}
@media (min-width: 992px) {
  .site-footer .footer-col:nth-child(2) {
    border-right: 1px solid #c28c3a;
    padding-right: 1.5rem;
  }
  .site-footer .footer-col:nth-child(3) {
    border-right: 1px solid #c28c3a;
    padding-right: 1.5rem;
  }
  .site-footer .footer-col:nth-child(4) {
    border-right: none;
    padding-right: 0;
  }
  .site-footer .footer-col:not(:first-child) {
    padding-left: 1.5rem;
  }
  .site-footer .footer-col:first-child {
    padding-right: 0;
  }
  .site-footer .footer-col:last-child {
    padding: 1.5rem;
  }
}
.site-footer .footer-brand .footer-logo img {
  height: 12rem;
  width: auto;
  display: block;
  margin-bottom: 0.5rem;
}
.site-footer .footer-brand .footer-divider {
  width: 60px;
  height: 3px;
  background-color: #c28c3a;
  margin: 0.5rem 0 1rem;
}
.site-footer .footer-brand .footer-description {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #1c1c1e;
  margin-bottom: 1rem;
  text-align: left;
}
.site-footer .footer-brand .footer-social {
  display: flex;
  gap: 0.75rem;
}
.site-footer .footer-brand .footer-social .social-icon {
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 0.9rem;
  background-color: #741417;
  border-radius: 50%;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s;
}
.site-footer .footer-brand .footer-social .social-icon:hover {
  background-color: #c28c3a;
  color: #1c1c1e;
}
.site-footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}
.site-footer .footer-contact li span {
  font-size: 1.7rem;
  width: 1.8rem;
  text-align: center;
  color: #741417;
}
.site-footer .footer-contact li a {
  color: #1c1c1e;
  text-decoration: none;
}
.site-footer .footer-contact li a:hover {
  color: #741417;
  text-decoration: underline;
}
.site-footer .footer-newsletter {
  border: 2px solid #c28c3a;
  border-radius: 0.75rem;
  padding: 1.5rem 1.2rem;
  text-align: center;
  position: relative;
  margin-top: 0.5rem;
  background-color: rgba(255, 255, 255, 0.95);
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .site-footer .footer-newsletter {
    padding: 2rem 1.5rem;
  }
}
.site-footer .footer-newsletter .newsletter-icon {
  position: absolute;
  top: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.5rem;
  height: 3.5rem;
  background-color: #741417;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.site-footer .footer-newsletter h4 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  color: #1c1c1e;
}
.site-footer .footer-newsletter .newsletter-divider {
  width: 60px;
  height: 2px;
  background-color: #c28c3a;
  margin: 0.5rem auto 1rem;
}
.site-footer .footer-newsletter p {
  font-size: 1.5rem;
  color: #1c1c1e;
  margin-bottom: 1rem;
}
.site-footer .footer-newsletter .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer .footer-newsletter .newsletter-form input[type=email] {
  padding: 0.75rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: #ffffff;
  color: #1c1c1e;
}
.site-footer .footer-newsletter .newsletter-form input[type=email]::placeholder {
  color: #adb5bd;
}
.site-footer .footer-newsletter .newsletter-form input[type=email]:focus {
  outline: 2px solid #741417;
  border-color: #741417;
}
.site-footer .footer-newsletter .newsletter-form button {
  padding: 0.75rem 1rem;
  background-color: #741417;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.site-footer .footer-newsletter .newsletter-form button:hover {
  transform: scale(1.02);
}
.site-footer .footer-pilares-separator {
  border-top: 1.2rem solid #c28c3a;
  margin: 0;
  opacity: 0.8;
  width: 100%;
}
.site-footer .footer-pilares-wrapper {
  background-color: #741417;
  padding: 2rem 1.5rem;
  margin: 0;
  width: 100%;
}
.site-footer .footer-pilares-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 768px) {
  .site-footer .footer-pilares-grid {
    flex-direction: row;
    justify-content: center;
    gap: 2rem 3rem;
  }
}
.site-footer .pilar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  justify-content: center;
  position: relative;
}
@media (min-width: 768px) {
  .site-footer .pilar-item {
    width: auto;
    justify-content: flex-start;
  }
}
.site-footer .pilar-item .pilar-icon {
  font-size: 5rem;
  line-height: 1;
  color: #ffffff;
}
.site-footer .pilar-item .pilar-texto {
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer .pilar-item .pilar-texto {
    text-align: left;
  }
}
.site-footer .pilar-item .pilar-texto .pilar-titulo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.site-footer .pilar-item .pilar-texto .pilar-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .site-footer .pilar-item:nth-child(1)::after, .site-footer .pilar-item:nth-child(4)::after {
    content: "";
    position: absolute;
    right: -1.5rem;
    top: 15%;
    height: 70%;
    width: 2px;
    background-color: #c28c3a;
    border-radius: 1px;
  }
}
.site-footer .pilar-emoji-central {
  font-size: 5rem;
  line-height: 1;
  color: #c28c3a;
  margin: 1rem;
  margin-top: -7rem;
  z-index: 1;
}
@media (min-width: 768px) {
  .site-footer .pilar-emoji-central {
    font-size: 11rem;
    margin: 0;
  }
}
.site-footer .footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  color: #6c757d;
  border-top: 1px solid #c28c3a;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .site-footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 1rem;
  }
}
.site-footer .footer-bottom p {
  margin: 0;
  color: #6c757d;
}
.site-footer .footer-bottom .footer-bottom-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.site-footer .footer-bottom .footer-bottom-links a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer .footer-bottom .footer-bottom-links a:hover {
  color: #741417;
  text-decoration: underline;
}
.site-footer .footer-bottom .footer-bottom-links span {
  color: #ced4da;
  pointer-events: none;
}

/* ==================== HOME - HERO ==================== */
.hero-home {
  background: url("../assets/img/borrar/1.png"); /* Cambia por tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 20rem 0;
  text-align: left; /* 🔹 ALINEACIÓN A LA IZQUIERDA */
}
.hero-home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.hero-home__title {
  font-size: 1.4rem;
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #c28c3a;
  margin-bottom: 2rem;
  margin-top: -5rem;
  letter-spacing: 0.5rem;
}
@media (min-width: 576px) {
  .hero-home__title {
    font-size: 1.4rem;
  }
}
.hero-home__divider {
  width: 80px;
  height: 3px;
  background-color: #c28c3a;
  margin: 0 0 1.5rem 0; /* 🔹 ALINEADO A LA IZQUIERDA */
  border-radius: 2px;
  margin-bottom: 3rem;
}
.hero-home__subtitle {
  font-size: 2rem;
  font-weight: 400;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.hero-home__subtitle .white {
  color: #ffffff;
}
.hero-home__subtitle .gold {
  color: #c28c3a;
}
@media (min-width: 576px) {
  .hero-home__subtitle {
    font-size: 4.5rem;
  }
}
.hero-home__text {
  font-size: 2rem;
  line-height: 1.6;
  max-width: 50rem;
  margin: 5rem 0 5rem 0; /* 🔹 MARGEN IZQUIERDO, SIN CENTRAR */
  color: #ffffff;
  opacity: 0.9;
}
@media (min-width: 576px) {
  .hero-home__text {
    font-size: 1.85rem;
  }
}
.hero-home__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* 🔹 BOTONES ALINEADOS A LA IZQUIERDA */
  gap: 1.5rem;
}
.hero-home__buttons .btn {
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 2rem;
  text-align: left;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid #c28c3a;
  cursor: pointer;
}
.hero-home__buttons .btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.hero-home__buttons .btn--gold {
  background-color: #c28c3a;
  color: #ffffff;
  border-color: #c28c3a;
}
.hero-home__buttons .btn--vinotinto {
  background-color: #500e10;
  color: #c28c3a;
  border-color: #c28c3a;
}

/* ==================== HOME - TARJETAS ==================== */
.home-cards {
  padding: 4rem 0;
  background-color: #ffffff;
}
.home-cards .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.home-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: -8rem;
}
@media (min-width: 768px) {
  .home-cards__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.home-cards .card-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background-color: #741417;
  border: 2px solid #c28c3a;
  border-radius: 1rem;
  padding: 1.8rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.home-cards .card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.home-cards .card-item__icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  line-height: 1;
  color: #ffffff;
  margin-top: 0.2rem;
}
.home-cards .card-item__content {
  color: #ffffff;
  text-align: left;
}
.home-cards .card-item__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.home-cards .card-item__content p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #ffffff;
  opacity: 0.9;
  margin: 0;
}
@media (min-width: 576px) {
  .home-cards .card-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .home-cards .card-item__content {
    text-align: center;
  }
}

/* ==================== SECCIÓN FORTALECEMOS ==================== */
.fortalecemos {
  background-color: #ffffff;
  position: relative;
  padding: 1rem 0;
}
.fortalecemos .fortalecemos-line-top,
.fortalecemos .fortalecemos-line-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #c28c3a;
  z-index: 1;
}
.fortalecemos .fortalecemos-line-top {
  top: 0;
}
.fortalecemos .fortalecemos-line-bottom {
  bottom: 0;
}
.fortalecemos .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.fortalecemos .fortalecemos-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .fortalecemos .fortalecemos-grid {
    flex-direction: row;
    gap: 4rem;
    align-items: stretch;
  }
}
.fortalecemos .fortalecemos-items {
  flex: 1;
}
@media (min-width: 768px) {
  .fortalecemos .fortalecemos-items {
    flex: 2;
  }
}
.fortalecemos .fortalecemos-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .fortalecemos .fortalecemos-items {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}
@media (min-width: 992px) {
  .fortalecemos .fortalecemos-items {
    grid-template-columns: repeat(8, 1fr);
  }
}
.fortalecemos .fortalecemos-items .item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0.5rem;
  width: 20rem;
  align-items: center;
}
@media (min-width: 768px) {
  .fortalecemos .fortalecemos-items .item {
    padding: 1.2rem 1rem;
  }
}
@media (min-width: 992px) {
  .fortalecemos .fortalecemos-items .item {
    padding: 1.2rem 0.8rem;
  }
}
.fortalecemos .fortalecemos-items .item .item-emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.2rem;
}
@media (min-width: 768px) {
  .fortalecemos .fortalecemos-items .item .item-emoji {
    font-size: 2.2rem;
  }
}
.fortalecemos .fortalecemos-items .item .item-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #741417;
  margin: 0 0 0.3rem 0;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .fortalecemos .fortalecemos-items .item .item-text h3 {
    font-size: 1.2rem;
  }
}
.fortalecemos .fortalecemos-items .item .item-text p {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #1c1c1e;
  margin: 0;
}
@media (min-width: 768px) {
  .fortalecemos .fortalecemos-items .item .item-text p {
    font-size: 1rem;
  }
}
.fortalecemos .fortalecemos-items .item-divider {
  width: 100%;
  height: 1px;
  background-color: #c28c3a;
  opacity: 0.4;
  margin: 0;
}
@media (min-width: 768px) {
  .fortalecemos .fortalecemos-items .item-divider {
    width: 1px;
    height: 10rem;
    background-color: #c28c3a;
    margin-top: 2.8rem;
    align-self: stretch;
  }
}
@media (min-width: 768px) {
  .fortalecemos .fortalecemos-items .item-divider:last-child {
    display: none;
  }
}
.fortalecemos .fortalecemos-frase {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  border-top: 2px solid #c28c3a;
  position: relative;
}
@media (min-width: 768px) {
  .fortalecemos .fortalecemos-frase {
    flex: 1;
    align-items: flex-start;
    padding-top: 0;
    padding-left: 2rem;
    border-top: none;
    min-height: 100%;
  }
}
@media (min-width: 768px) {
  .fortalecemos .fortalecemos-frase::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 70%;
    background-color: #c28c3a;
    border-radius: 1px;
  }
}
.fortalecemos .fortalecemos-frase .frase-comillas {
  position: relative;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .fortalecemos .fortalecemos-frase .frase-comillas {
    padding: 0 1.5rem;
  }
}
.fortalecemos .fortalecemos-frase .frase-comillas .comilla-apertura,
.fortalecemos .fortalecemos-frase .frase-comillas .comilla-cierre {
  font-size: 4rem;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #c28c3a;
  line-height: 1;
  display: block;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .fortalecemos .fortalecemos-frase .frase-comillas .comilla-apertura,
  .fortalecemos .fortalecemos-frase .frase-comillas .comilla-cierre {
    font-size: 5rem;
  }
}
.fortalecemos .fortalecemos-frase .frase-comillas .comilla-apertura {
  margin-bottom: -1rem;
  text-align: left;
}
.fortalecemos .fortalecemos-frase .frase-comillas .comilla-cierre {
  margin-top: -1rem;
  text-align: right;
}
.fortalecemos .fortalecemos-frase .frase-comillas .frase-texto {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #1c1c1e;
  font-weight: 500;
  margin: 1rem 0;
  text-align: center;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
}
@media (min-width: 768px) {
  .fortalecemos .fortalecemos-frase .frase-comillas .frase-texto {
    font-size: 1.4rem;
    text-align: left;
  }
}
.fortalecemos .fortalecemos-frase .frase-line {
  width: 60px;
  height: 3px;
  background-color: #c28c3a;
  margin: 1.5rem auto 0;
}
@media (min-width: 768px) {
  .fortalecemos .fortalecemos-frase .frase-line {
    width: 80px;
    margin: 1.5rem 0 0;
  }
}
.fortalecemos .frase-line {
  width: 60px;
  height: 3px;
  background-color: #c28c3a;
  margin: 1.5rem auto 0;
}
@media (min-width: 768px) {
  .fortalecemos .frase-line {
    width: 80px;
    margin: 1.5rem 0 0;
  }
}

/* ==================== QUIÉNES SOMOS (HOME) ==================== */
.quienes-home {
  background-color: #ffffff;
  position: relative;
  padding: 0;
}
.quienes-home .quienes-home-top {
  background-image: url("../assets/img/QuienesSomos_IMG/FONDOS/F_Mesa de trabajo .webp");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}
.quienes-home .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.quienes-home .quienes-home-content {
  max-width: 600px;
  margin: 0;
  text-align: left;
}
.quienes-home .quienes-home-content h2 {
  font-size: 4rem;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  font-weight: 400;
  color: #741417;
  line-height: 1;
  margin: 0 0 1.5rem 0;
}
.quienes-home .quienes-home-content h2 .title-line {
  display: block;
}
@media (min-width: 576px) {
  .quienes-home .quienes-home-content h2 {
    font-size: 10rem;
  }
}
.quienes-home .quienes-home-content .quienes-home-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1c1c1e;
  text-align: left;
  margin: 0 0 2rem 0;
  max-width: 50rem;
}
@media (min-width: 576px) {
  .quienes-home .quienes-home-content .quienes-home-text {
    font-size: 2rem;
  }
}
.quienes-home .quienes-home-content .btn-quienes-home {
  margin-top: 5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 6rem;
  background-color: #741417;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 2rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.quienes-home .quienes-home-content .btn-quienes-home:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.quienes-home .quienes-home-content .btn-quienes-home .btn-arrow {
  font-size: 2rem;
  transition: transform 0.2s;
}
.quienes-home .quienes-home-content .btn-quienes-home:hover .btn-arrow {
  transform: translateX(4px);
}
.quienes-home .quienes-home-content .quienes-home-emoji {
  position: absolute;
  top: 65rem;
  right: -5rem;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 576px) {
  .quienes-home .quienes-home-content .quienes-home-emoji {
    right: -5rem;
    top: 60rem;
  }
}
.quienes-home .quienes-home-content .emoji-gigante {
  font-size: 30rem;
  line-height: 1;
  display: block;
}
@media (min-width: 576px) {
  .quienes-home .quienes-home-content .emoji-gigante {
    font-size: 15rem;
  }
}

.quienes-home-pilares-wrapper {
  background-color: #741417;
  position: relative;
  padding: 3rem 0;
}
.quienes-home-pilares-wrapper::before, .quienes-home-pilares-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #c28c3a;
  z-index: 1;
}
.quienes-home-pilares-wrapper::before {
  top: 0;
}
.quienes-home-pilares-wrapper::after {
  bottom: 0;
}
.quienes-home-pilares-wrapper .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}
.quienes-home-pilares-wrapper .quienes-home-pilares {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .quienes-home-pilares-wrapper .quienes-home-pilares {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 992px) {
  .quienes-home-pilares-wrapper .quienes-home-pilares {
    grid-template-columns: repeat(8, 1fr);
  }
}
.quienes-home-pilares-wrapper .quienes-home-pilares .pilar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.2rem 0.5rem;
  color: #ffffff;
  width: 25rem;
}
@media (min-width: 768px) {
  .quienes-home-pilares-wrapper .quienes-home-pilares .pilar-item {
    padding: 1.2rem 0.8rem;
  }
}
.quienes-home-pilares-wrapper .quienes-home-pilares .pilar-item .pilar-emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.2rem;
}
@media (min-width: 768px) {
  .quienes-home-pilares-wrapper .quienes-home-pilares .pilar-item .pilar-emoji {
    font-size: 2.2rem;
  }
}
.quienes-home-pilares-wrapper .quienes-home-pilares .pilar-item .pilar-texto h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.3rem 0;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .quienes-home-pilares-wrapper .quienes-home-pilares .pilar-item .pilar-texto h4 {
    font-size: 2rem;
  }
}
.quienes-home-pilares-wrapper .quienes-home-pilares .pilar-item .pilar-texto p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #ffffff;
  opacity: 0.9;
  margin: 0;
}
@media (min-width: 768px) {
  .quienes-home-pilares-wrapper .quienes-home-pilares .pilar-item .pilar-texto p {
    font-size: 1.2rem;
  }
}
.quienes-home-pilares-wrapper .quienes-home-pilares .pilar-divider {
  width: 100%;
  height: 1px;
  background-color: #c28c3a;
  opacity: 0.4;
  margin: 0;
}
@media (min-width: 768px) {
  .quienes-home-pilares-wrapper .quienes-home-pilares .pilar-divider {
    width: 1px;
    height: auto;
    background-color: #c28c3a;
    margin: 0;
    align-self: stretch;
  }
}
@media (min-width: 768px) {
  .quienes-home-pilares-wrapper .quienes-home-pilares .pilar-divider:last-child {
    display: none;
  }
}

/* ==================== FRASE DESTACADA (fondo amarillo) ==================== */
.frase-destacada {
  background-color: #c28c3a;
  padding: 3rem 0;
  margin-top: -1px;
  border: none;
  position: relative;
  overflow: hidden;
}
.frase-destacada .frase-destacada-content {
  max-width: 100%;
  padding: 0 1.5rem;
  text-align: center;
  margin: 0 auto;
}
.frase-destacada .frase-destacada-content p {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #741417;
  line-height: 1.3;
  margin: 0;
  max-width: 1200px;
  margin: 0 auto;
  letter-spacing: 0.05em;
}
@media (min-width: 576px) {
  .frase-destacada .frase-destacada-content p {
    font-size: 1.8rem;
  }
}

/* ==================== MEMBRESÍA OMCA ==================== */
.membresia-home {
  background-color: #741417;
  padding: 4rem 0;
  color: #ffffff;
  position: relative;
}
.membresia-home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.membresia-home .membresia-header {
  text-align: left;
  margin-bottom: 3rem;
}
.membresia-home .membresia-header h2 {
  font-size: 4rem;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
}
.membresia-home .membresia-header h2 .white {
  color: #ffffff;
}
.membresia-home .membresia-header h2 .gold {
  color: #c28c3a;
}
@media (min-width: 576px) {
  .membresia-home .membresia-header h2 {
    font-size: 7rem;
  }
}
.membresia-home .membresia-header .membresia-divider {
  width: 80px;
  height: 3px;
  background-color: #c28c3a;
  margin: 0 0 1.5rem 0;
  border-radius: 2px;
}
.membresia-home .membresia-header .membresia-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ffffff;
  max-width: 50rem;
  margin: 0 0 2rem 0;
  opacity: 0.9;
}
@media (min-width: 576px) {
  .membresia-home .membresia-header .membresia-text {
    font-size: 1.5rem;
  }
}
.membresia-home .membresia-header .btn-membresia {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 2rem;
  background-color: #500e10;
  color: #c28c3a;
  border: 2px solid #c28c3a;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.membresia-home .membresia-header .btn-membresia:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.membresia-home .membresia-header .btn-membresia .btn-arrow {
  font-size: 1.4rem;
  transition: transform 0.2s;
}
.membresia-home .membresia-header .btn-membresia:hover .btn-arrow {
  transform: translateX(4px);
}
.membresia-home .membresia-beneficios {
  background-color: #500e10;
  border: 2px solid #c28c3a;
  border-radius: 0.5rem;
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .membresia-home .membresia-beneficios {
    padding: 3rem 2rem;
  }
}
.membresia-home .membresia-beneficios .beneficios-titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #c28c3a;
  text-align: center;
  margin: 0 0 2rem 0;
  letter-spacing: 0.05em;
  position: relative;
}
@media (min-width: 576px) {
  .membresia-home .membresia-beneficios .beneficios-titulo {
    font-size: 2rem;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
}
.membresia-home .membresia-beneficios .beneficios-titulo::before, .membresia-home .membresia-beneficios .beneficios-titulo::after {
  content: "";
  flex: 1;
  height: 2px;
  background-color: #c28c3a;
  border-radius: 1px;
  max-width: 60px;
}
@media (min-width: 576px) {
  .membresia-home .membresia-beneficios .beneficios-titulo::before, .membresia-home .membresia-beneficios .beneficios-titulo::after {
    max-width: 30px;
  }
}
@media (min-width: 576px) {
  .membresia-home .membresia-beneficios .beneficios-titulo::before, .membresia-home .membresia-beneficios .beneficios-titulo::after {
    max-width: 20px;
  }
}
.membresia-home .membresia-beneficios .beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .membresia-home .membresia-beneficios .beneficios-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 992px) {
  .membresia-home .membresia-beneficios .beneficios-grid {
    grid-template-columns: repeat(12, 1fr);
  }
}
.membresia-home .membresia-beneficios .beneficios-grid .beneficio-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.2rem 0.5rem;
  width: 18rem;
}
.membresia-home .membresia-beneficios .beneficios-grid .beneficio-item .beneficio-emoji {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.membresia-home .membresia-beneficios .beneficios-grid .beneficio-item h4 {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 0.4rem 0;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .membresia-home .membresia-beneficios .beneficios-grid .beneficio-item h4 {
    font-size: 1.3rem;
  }
}
.membresia-home .membresia-beneficios .beneficios-grid .beneficio-item p {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
  opacity: 0.8;
}
@media (min-width: 768px) {
  .membresia-home .membresia-beneficios .beneficios-grid .beneficio-item p {
    font-size: 1.2rem;
  }
}
.membresia-home .membresia-beneficios .beneficios-grid .beneficio-divider {
  width: 100%;
  height: 1px;
  background-color: #c28c3a;
  opacity: 0.4;
  margin: 0;
}
@media (min-width: 768px) {
  .membresia-home .membresia-beneficios .beneficios-grid .beneficio-divider {
    width: 1px;
    height: auto;
    background-color: #c28c3a;
    margin: 0;
    align-self: stretch;
  }
}
@media (min-width: 768px) {
  .membresia-home .membresia-beneficios .beneficios-grid .beneficio-divider:last-child {
    display: none;
  }
}
.membresia-home .membresia-frase-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 576px) {
  .membresia-home .membresia-frase-wrapper {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.membresia-home .membresia-frase-wrapper .frase-line {
  flex: 1;
  height: 2px;
  background-color: #c28c3a;
  border-radius: 1px;
}
.membresia-home .membresia-frase-wrapper .membresia-frase {
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  text-align: center;
  margin: 0;
  line-height: 1.4;
  opacity: 0.9;
  flex: 0 0 auto;
  max-width: 600px;
}
@media (min-width: 576px) {
  .membresia-home .membresia-frase-wrapper .membresia-frase {
    font-size: 2rem;
    max-width: 100%;
  }
}
.membresia-home .membresia-frase-wrapper .membresia-frase .frase-white {
  color: #ffffff;
}
.membresia-home .membresia-frase-wrapper .membresia-frase .frase-gold {
  color: #c28c3a;
}

/* ==================== EVENTOS JURÍDICOS ==================== */
.eventos-home {
  background-color: #f6f4f2;
  padding: 4rem 0;
}
.eventos-home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.eventos-home .eventos-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .eventos-home .eventos-grid {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
}
.eventos-home .eventos-col-left {
  flex: 1.5;
  max-width: 50rem;
}
.eventos-home .eventos-col-left h2 {
  font-size: 3rem;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
  line-height: 1.1;
}
.eventos-home .eventos-col-left h2 .vino {
  color: #741417;
}
.eventos-home .eventos-col-left h2 .oro {
  color: #c28c3a;
}
@media (min-width: 576px) {
  .eventos-home .eventos-col-left h2 {
    font-size: 12rem;
  }
}
.eventos-home .eventos-col-left .eventos-divider {
  width: 80px;
  height: 3px;
  background-color: #c28c3a;
  margin: 2rem 0 1.5rem 0;
  border-radius: 2px;
}
.eventos-home .eventos-col-left .eventos-text {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #1c1c1e;
  margin: 0 0 2rem 0;
  max-width: 45rem;
}
.eventos-home .eventos-col-left .eventos-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .eventos-home .eventos-col-left .eventos-items {
    grid-template-columns: repeat(10, 1fr);
    gap: 0;
  }
}
.eventos-home .eventos-col-left .eventos-items .evento-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.5rem;
  width: 10rem;
}
.eventos-home .eventos-col-left .eventos-items .evento-item .item-emoji {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.eventos-home .eventos-col-left .eventos-items .evento-item .item-label {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.eventos-home .eventos-col-left .eventos-items .item-divider {
  width: 100%;
  height: 1px;
  background-color: #c28c3a;
  opacity: 0.4;
  margin: 0;
}
@media (min-width: 768px) {
  .eventos-home .eventos-col-left .eventos-items .item-divider {
    width: 1px;
    height: auto;
    background-color: #c28c3a;
    margin: 0;
    align-self: stretch;
  }
}
@media (min-width: 768px) {
  .eventos-home .eventos-col-left .eventos-items .item-divider:last-child {
    display: none;
  }
}
.eventos-home .eventos-col-left .eventos-stats {
  background-color: #741417;
  border: 2px solid #c28c3a;
  border-radius: 2rem;
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.eventos-home .eventos-col-left .eventos-stats .stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .eventos-home .eventos-col-left .eventos-stats .stats-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
  }
}
.eventos-home .eventos-col-left .eventos-stats .stats-grid .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  width: 10rem;
}
.eventos-home .eventos-col-left .eventos-stats .stats-grid .stat-item .stat-emoji {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.eventos-home .eventos-col-left .eventos-stats .stats-grid .stat-item .stat-number {
  font-size: 2.4rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
}
.eventos-home .eventos-col-left .eventos-stats .stats-grid .stat-item .stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.9;
  margin: 0;
  line-height: 1.3;
}
.eventos-home .eventos-col-left .eventos-stats .stats-grid .stat-item .stat-sub {
  font-size: 1.2rem;
  color: #ffffff;
  opacity: 0.9;
  margin: 0;
  line-height: 1.3;
}
.eventos-home .eventos-col-left .eventos-stats .stats-grid .stat-item:not(:has(.stat-number)) .stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  opacity: 1;
}
.eventos-home .eventos-col-left .eventos-stats .stats-grid .stat-item:not(:has(.stat-number)) .stat-sub {
  font-size: 0.9rem;
  opacity: 0.8;
}
.eventos-home .eventos-col-left .eventos-stats .stats-grid .stat-divider {
  width: 100%;
  height: 1px;
  background-color: #c28c3a;
  opacity: 0.4;
  margin: 0;
}
@media (min-width: 768px) {
  .eventos-home .eventos-col-left .eventos-stats .stats-grid .stat-divider {
    width: 1px;
    height: auto;
    background-color: #c28c3a;
    margin: 0;
    align-self: stretch;
  }
}
@media (min-width: 768px) {
  .eventos-home .eventos-col-left .eventos-stats .stats-grid .stat-divider:last-child {
    display: none;
  }
}
.eventos-home .eventos-col-right {
  flex: 1;
}
.eventos-home .eventos-col-right .eventos-imagenes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.eventos-home .eventos-col-right .eventos-imagenes .img-large {
  width: 100%;
}
.eventos-home .eventos-col-right .eventos-imagenes .img-large img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  display: block;
  object-fit: cover;
}
.eventos-home .eventos-col-right .eventos-imagenes .img-small-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.eventos-home .eventos-col-right .eventos-imagenes .img-small-grid img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  display: block;
  object-fit: cover;
}
.eventos-home .eventos-col-right .eventos-redes {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background-color: #ffffff;
  border: 2px solid #c28c3a;
  border-radius: 2rem;
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .eventos-home .eventos-col-right .eventos-redes {
    flex-direction: row;
    align-items: center;
    padding: 1.5rem 2rem;
  }
}
.eventos-home .eventos-col-right .eventos-redes .redes-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.eventos-home .eventos-col-right .eventos-redes .redes-left .redes-emoji {
  font-size: 2.5rem;
  line-height: 1;
}
.eventos-home .eventos-col-right .eventos-redes .redes-left .redes-texto h4 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #741417;
  margin: 0 0 0.2rem 0;
}
.eventos-home .eventos-col-right .eventos-redes .redes-left .redes-texto p {
  font-size: 1.5rem;
  color: #1c1c1e;
  margin: 0;
  opacity: 0.8;
}
.eventos-home .eventos-col-right .eventos-redes .redes-divider {
  width: 100%;
  height: 1px;
  background-color: #c28c3a;
  opacity: 0.4;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .eventos-home .eventos-col-right .eventos-redes .redes-divider {
    width: 1px;
    height: 3rem;
    background-color: #c28c3a;
    margin: 0 1.5rem;
  }
}
.eventos-home .eventos-col-right .eventos-redes .redes-right {
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .eventos-home .eventos-col-right .eventos-redes .redes-right {
    justify-content: flex-end;
  }
}
.eventos-home .eventos-col-right .eventos-redes .redes-right .btn-redes {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  background-color: #741417;
  color: #ffffff;
  border: 2px solid #c28c3a;
  border-radius: 1rem;
  font-weight: 500;
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s;
}
.eventos-home .eventos-col-right .eventos-redes .redes-right .btn-redes:hover {
  transform: scale(1.02);
}
.eventos-home .eventos-col-right .eventos-redes .redes-right .btn-redes .btn-arrow {
  color: #c28c3a;
  font-size: 3rem;
  transition: transform 0.2s;
}
.eventos-home .eventos-col-right .eventos-redes .redes-right .btn-redes:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==================== COMUNIDAD OMCA ==================== */
.comunidad-home {
  background-color: #ffffff;
  padding-top: 10rem;
}
.comunidad-home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.comunidad-home .comunidad-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .comunidad-home .comunidad-grid {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
}
.comunidad-home .comunidad-col-left {
  flex: 1.2;
  max-width: 58rem;
}
.comunidad-home .comunidad-col-left h2 {
  font-size: 1.5rem;
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.8rem;
  line-height: 1.1;
  margin: 0 0 0.5rem 0;
}
.comunidad-home .comunidad-col-left h2 .title-line {
  display: block;
}
.comunidad-home .comunidad-col-left h2 .oro {
  color: #c28c3a;
}
.comunidad-home .comunidad-col-left .comunidad-divider {
  width: 80px;
  height: 3px;
  background-color: #c28c3a;
  margin: 0 0 1.5rem 0;
  border-radius: 2px;
}
.comunidad-home .comunidad-col-left .comunidad-subtitle {
  font-size: 7rem;
  font-weight: 600;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}
.comunidad-home .comunidad-col-left .comunidad-subtitle .black {
  color: #1c1c1e;
}
.comunidad-home .comunidad-col-left .comunidad-subtitle .oro {
  color: #c28c3a;
}
.comunidad-home .comunidad-col-left .comunidad-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  color: #1c1c1e;
  max-width: 420px;
  margin: 4rem 0 4rem 0;
}
.comunidad-home .comunidad-col-left .comunidad-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .comunidad-home .comunidad-col-left .comunidad-items {
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
  }
}
.comunidad-home .comunidad-col-left .comunidad-items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.5rem;
  width: 15rem;
}
.comunidad-home .comunidad-col-left .comunidad-items .item .item-emoji {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.comunidad-home .comunidad-col-left .comunidad-items .item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #741417;
  margin: 0 0 0.3rem 0;
  letter-spacing: 0.03em;
}
.comunidad-home .comunidad-col-left .comunidad-items .item p {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #1c1c1e;
  margin: 0;
  opacity: 0.8;
}
.comunidad-home .comunidad-col-left .comunidad-items .item-divider {
  width: 100%;
  height: 1px;
  background-color: #c28c3a;
  opacity: 0.4;
  margin: 0;
}
@media (min-width: 768px) {
  .comunidad-home .comunidad-col-left .comunidad-items .item-divider {
    width: 1px;
    height: auto;
    background-color: #c28c3a;
    margin: 0;
    align-self: stretch;
  }
}
@media (min-width: 768px) {
  .comunidad-home .comunidad-col-left .comunidad-items .item-divider:last-child {
    display: none;
  }
}
.comunidad-home .comunidad-col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.comunidad-home .comunidad-col-right .comunidad-imagenes {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.comunidad-home .comunidad-col-right .comunidad-imagenes .img-wrapper {
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.comunidad-home .comunidad-col-right .comunidad-imagenes .img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
  background-color: #e9ecef;
}
@media (min-width: 768px) {
  .comunidad-home .comunidad-col-right .comunidad-imagenes {
    height: 600px;
    display: block;
    position: relative;
  }
  .comunidad-home .comunidad-col-right .comunidad-imagenes .img-wrapper {
    position: absolute;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 0.75rem;
    overflow: hidden;
  }
  .comunidad-home .comunidad-col-right .comunidad-imagenes .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: auto;
  }
  .comunidad-home .comunidad-col-right .comunidad-imagenes .img-wrapper.img-1 {
    width: 58%;
    height: 40%;
    top: 0;
    left: 0;
    z-index: 2;
  }
  .comunidad-home .comunidad-col-right .comunidad-imagenes .img-wrapper.img-2 {
    width: 40%;
    height: 55%;
    top: 10%;
    right: 0%;
    z-index: 1;
  }
  .comunidad-home .comunidad-col-right .comunidad-imagenes .img-wrapper.img-3 {
    width: 58%;
    height: 40%;
    bottom: 18%;
    left: 0%;
    z-index: 3;
  }
  .comunidad-home .comunidad-col-right .comunidad-imagenes .img-wrapper.img-4 {
    width: 48%;
    height: 30%;
    bottom: 3%;
    right: 0;
    z-index: 4;
  }
}
.comunidad-home .comunidad-col-right .comunidad-cita {
  background-color: #741417;
  border: 2px solid #c28c3a;
  border-radius: 0.5rem;
  padding: 2rem 1.5rem;
  margin-top: -11rem;
  position: relative;
  width: 50%;
  height: 8rem;
}
@media (min-width: 576px) {
  .comunidad-home .comunidad-col-right .comunidad-cita {
    padding: 1.5rem 1rem;
  }
}
.comunidad-home .comunidad-col-right .comunidad-cita .cita-comillas {
  position: relative;
  padding: 0 1rem;
  margin-top: -3.5rem;
}
.comunidad-home .comunidad-col-right .comunidad-cita .cita-comillas .comilla-apertura,
.comunidad-home .comunidad-col-right .comunidad-cita .cita-comillas .comilla-cierre {
  font-size: 4rem;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #c28c3a;
  line-height: 1;
  display: block;
}
.comunidad-home .comunidad-col-right .comunidad-cita .cita-comillas .comilla-apertura {
  text-align: left;
  transform: translate(-19px, 30px);
}
.comunidad-home .comunidad-col-right .comunidad-cita .cita-comillas .comilla-cierre {
  text-align: right;
  transform: translate(15px, -25px);
}
.comunidad-home .comunidad-col-right .comunidad-cita .cita-comillas .cita-texto {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  text-align: center;
}
.comunidad-home .comunidad-stats-block {
  margin-top: 3rem;
  background-color: #741417;
  border: 2px solid #c28c3a;
  border-radius: 1.5rem 1.5rem 0 0;
  padding: 2.5rem 2rem;
}
@media (min-width: 576px) {
  .comunidad-home .comunidad-stats-block {
    padding: 2rem 1.5rem;
    border-radius: 2rem 2rem 0 0;
  }
}
.comunidad-home .comunidad-stats-block .stats-block-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .comunidad-home .comunidad-stats-block .stats-block-content {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
.comunidad-home .comunidad-stats-block .stats-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex: 1;
}
.comunidad-home .comunidad-stats-block .stats-header .stats-emoji {
  font-size: 4rem;
  line-height: 1;
}
@media (min-width: 576px) {
  .comunidad-home .comunidad-stats-block .stats-header .stats-emoji {
    font-size: 3rem;
  }
}
.comunidad-home .comunidad-stats-block .stats-header h3 {
  font-size: 2.8rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #ffffff;
  text-align: center;
}
.comunidad-home .comunidad-stats-block .stats-header h3 .white {
  color: #ffffff;
}
.comunidad-home .comunidad-stats-block .stats-header h3 .white-txt {
  font-size: 1rem;
  font-weight: 400;
}
@media (min-width: 576px) {
  .comunidad-home .comunidad-stats-block .stats-header h3 {
    font-size: 1.3rem;
    text-align: center;
  }
}
.comunidad-home .comunidad-stats-block .stats-numbers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  flex: 1.5;
}
@media (min-width: 768px) {
  .comunidad-home .comunidad-stats-block .stats-numbers-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
  }
}
.comunidad-home .comunidad-stats-block .stats-numbers-grid .stat-number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem 0.5rem;
  width: 10rem;
  text-align: center;
}
.comunidad-home .comunidad-stats-block .stats-numbers-grid .stat-number-item .stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #c28c3a;
  line-height: 1.2;
}
.comunidad-home .comunidad-stats-block .stats-numbers-grid .stat-number-item .stat-label {
  font-size: 1rem;
  color: #ffffff;
  opacity: 0.9;
  line-height: 1.3;
  margin-top: 0.2rem;
}
.comunidad-home .comunidad-stats-block .stats-numbers-grid .stat-divider {
  width: 100%;
  height: 1px;
  background-color: #c28c3a;
  opacity: 0.4;
  margin: 0;
}
@media (min-width: 768px) {
  .comunidad-home .comunidad-stats-block .stats-numbers-grid .stat-divider {
    width: 1px;
    height: auto;
    background-color: #c28c3a;
    margin: 0;
    align-self: stretch;
  }
}
@media (min-width: 768px) {
  .comunidad-home .comunidad-stats-block .stats-numbers-grid .stat-divider:last-child {
    display: none;
  }
}
.comunidad-home .comunidad-stats-block .stats-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.comunidad-home .comunidad-stats-block .stats-cta .btn-stats {
  display: inline-block;
  padding: 0.8rem 2.5rem;
  background-color: #ffffff;
  color: #741417;
  border: none;
  border-radius: 2rem;
  font-weight: 700;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  font-size: 1.4rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.comunidad-home .comunidad-stats-block .stats-cta .btn-stats:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.comunidad-home .comunidad-stats-block .stats-cta .stats-footer-text {
  font-size: 1.3rem;
  color: #c28c3a;
  margin-top: 0.8rem;
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 600;
}

/* ==================== CONTACTO ==================== */
.contacto-home {
  background-color: #f6f4f2;
  padding: 6rem 0;
  margin-top: -3.5rem;
}
.contacto-home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.contacto-home .contacto-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .contacto-home .contacto-grid {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
}
.contacto-home .contacto-col-left {
  flex: 1.2;
}
.contacto-home .contacto-col-left .contacto-header {
  margin-bottom: 2rem;
}
.contacto-home .contacto-col-left .contacto-header .contacto-titulo {
  font-size: 1.3rem;
  font-weight: 700;
  color: #c28c3a;
  letter-spacing: 0.3rem;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
}
.contacto-home .contacto-col-left .contacto-header .contacto-divider {
  width: 80px;
  height: 3px;
  background-color: #c28c3a;
  border-radius: 2px;
  margin: 0 0 1.5rem 0;
}
.contacto-home .contacto-col-left .contacto-header .contacto-subtitulo {
  font-size: 8rem;
  font-weight: 400;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  margin: 0;
  line-height: 1.1;
}
.contacto-home .contacto-col-left .contacto-header .contacto-subtitulo .vino {
  color: #741417;
}
.contacto-home .contacto-col-left .contacto-header .contacto-subtitulo .oro {
  color: #c28c3a;
}
@media (min-width: 576px) {
  .contacto-home .contacto-col-left .contacto-header .contacto-subtitulo {
    font-size: 8rem;
  }
}
.contacto-home .contacto-col-left .contacto-texto-wrapper {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}
.contacto-home .contacto-col-left .contacto-texto-wrapper .contacto-line-vertical {
  width: 3px;
  min-height: 80px;
  background-color: #c28c3a;
  border-radius: 2px;
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .contacto-home .contacto-col-left .contacto-texto-wrapper .contacto-line-vertical {
    min-height: 60px;
  }
}
.contacto-home .contacto-col-left .contacto-texto-wrapper .contacto-texto {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1c1c1e;
  margin: 0;
  flex: 1;
}
@media (min-width: 576px) {
  .contacto-home .contacto-col-left .contacto-texto-wrapper .contacto-texto {
    font-size: 1rem;
    text-align: left;
  }
}
.contacto-home .contacto-col-left .contacto-texto-wrapper .contacto-texto {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #1c1c1e;
  margin: 0;
  flex: 1;
}
@media (min-width: 576px) {
  .contacto-home .contacto-col-left .contacto-texto-wrapper .contacto-texto {
    font-size: 1.8rem;
    text-align: left;
  }
}
.contacto-home .contacto-col-left .contacto-pilares {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .contacto-home .contacto-col-left .contacto-pilares {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 992px) {
  .contacto-home .contacto-col-left .contacto-pilares {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.contacto-home .contacto-col-left .contacto-pilares .pilar-comunicacion {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.contacto-home .contacto-col-left .contacto-pilares .pilar-comunicacion:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.contacto-home .contacto-col-left .contacto-pilares .pilar-comunicacion .pilar-emoji {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.contacto-home .contacto-col-left .contacto-pilares .pilar-comunicacion h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #741417;
  margin: 0 0 0.3rem 0;
  letter-spacing: 0.05em;
}
.contacto-home .contacto-col-left .contacto-pilares .pilar-comunicacion p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #1c1c1e;
  margin: 0;
  opacity: 0.8;
}
.contacto-home .contacto-col-left .contacto-pilares .pilar-comunicacion .pilar-line {
  width: 30px;
  height: 2px;
  background-color: #741417;
  border-radius: 2px;
  margin-top: 0.8rem;
}
.contacto-home .contacto-col-left .contacto-mapa {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.contacto-home .contacto-col-left .contacto-mapa iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}
@media (min-width: 768px) {
  .contacto-home .contacto-col-left .contacto-mapa iframe {
    height: 350px;
  }
}
.contacto-home .contacto-col-right {
  flex: 1;
  margin-top: 10rem;
}
.contacto-home .contacto-col-right .contacto-form-wrapper {
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem 1.8rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  width: 100%;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .form-header {
  margin-bottom: 1.5rem;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .form-header .form-header-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .form-header .form-emoji {
  font-size: 2.2rem;
  line-height: 1;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .form-header .form-title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .form-header .form-title .vino {
  color: #741417;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .form-header .form-divider {
  width: 10rem;
  height: 2px;
  margin-left: 4rem;
  background-color: #c28c3a;
  border-radius: 2px;
  margin-top: 0.5rem;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 1rem;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form .form-row {
    flex-direction: row;
    gap: 1.2rem;
  }
  .contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form .form-row input {
    flex: 1;
  }
}
.contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form input,
.contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form textarea {
  padding: 0.9rem 1.2rem;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #1c1c1e;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form input:focus,
.contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form textarea:focus {
  outline: none;
  border-color: #741417;
  box-shadow: 0 0 0 3px rgba(116, 20, 23, 0.1);
}
.contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form input::placeholder,
.contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form textarea::placeholder {
  color: #adb5bd;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form textarea {
  resize: vertical;
  min-height: 35rem;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form .form-btn-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form .btn-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background-color: #741417;
  color: #ffffff;
  border: none;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  width: auto;
  max-width: 280px;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form .btn-form:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(116, 20, 23, 0.3);
}
.contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form .btn-form .btn-emoji {
  font-size: 1.4rem;
  line-height: 1;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form .btn-form .btn-arrow {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s;
  color: #c28c3a;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form .btn-form:hover .btn-arrow {
  transform: translateX(4px);
}
@media (min-width: 768px) {
  .contacto-home .contacto-col-right .contacto-form-wrapper .contacto-form .btn-form {
    max-width: 280px;
    margin: 0;
  }
}
.contacto-home .contacto-col-right .contacto-form-wrapper .form-security {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .form-security .security-emoji {
  font-size: 1.4rem;
  line-height: 1;
}
.contacto-home .contacto-col-right .contacto-form-wrapper .form-security .security-text {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
  font-weight: 500;
}
.contacto-home .contacto-cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .contacto-home .contacto-cta-wrapper {
    flex-direction: row;
    gap: 2rem;
  }
}
.contacto-home .contacto-cta-wrapper .cta-block {
  background-color: #500e10;
  border: 2px solid #c28c3a;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
@media (min-width: 768px) {
  .contacto-home .contacto-cta-wrapper .cta-block {
    flex-direction: row;
    text-align: left;
    align-items: center;
    padding: 2rem 2rem;
    gap: 1.5rem;
  }
}
.contacto-home .contacto-cta-wrapper .cta-block-left .cta-left-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  flex-wrap: wrap;
}
.contacto-home .contacto-cta-wrapper .cta-block-left .cta-left-content .cta-emoji {
  font-size: 3rem;
  line-height: 1;
  color: #ffffff;
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .contacto-home .contacto-cta-wrapper .cta-block-left .cta-left-content .cta-emoji {
    font-size: 2.5rem;
  }
}
.contacto-home .contacto-cta-wrapper .cta-block-left .cta-left-content .cta-text {
  flex: 1;
}
.contacto-home .contacto-cta-wrapper .cta-block-left .cta-left-content .cta-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.3rem 0;
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
@media (min-width: 576px) {
  .contacto-home .contacto-cta-wrapper .cta-block-left .cta-left-content .cta-text h3 {
    font-size: 1.4rem;
  }
}
.contacto-home .contacto-cta-wrapper .cta-block-left .cta-left-content .cta-text p {
  font-size: 1rem;
  color: #ffffff;
  opacity: 0.9;
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .contacto-home .contacto-cta-wrapper .cta-block-left .cta-left-content .cta-text p {
    font-size: 0.95rem;
  }
}
.contacto-home .contacto-cta-wrapper .cta-block-left .cta-divider {
  width: 100%;
  height: 2px;
  background-color: #c28c3a;
  opacity: 0.4;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .contacto-home .contacto-cta-wrapper .cta-block-left .cta-divider {
    width: 2px;
    height: 4rem;
    margin: 0 1.5rem;
  }
}
.contacto-home .contacto-cta-wrapper .cta-block-left .cta-right-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacto-home .contacto-cta-wrapper .cta-block-left .cta-right-content .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 2rem;
  background-color: #c28c3a;
  color: #741417;
  border: none;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.contacto-home .contacto-cta-wrapper .cta-block-left .cta-right-content .cta-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(194, 140, 58, 0.3);
}
.contacto-home .contacto-cta-wrapper .cta-block-left .cta-right-content .cta-btn .cta-arrow {
  font-size: 1.4rem;
  transition: transform 0.2s;
}
.contacto-home .contacto-cta-wrapper .cta-block-left .cta-right-content .cta-btn:hover .cta-arrow {
  transform: translateX(4px);
}
.contacto-home .contacto-cta-wrapper .cta-block-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .contacto-home .contacto-cta-wrapper .cta-block-right {
    flex-direction: row;
    gap: 0;
    align-items: stretch;
  }
}
.contacto-home .contacto-cta-wrapper .cta-block-right .cta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  flex: 1;
}
@media (min-width: 768px) {
  .contacto-home .contacto-cta-wrapper .cta-block-right .cta-item {
    padding: 0.5rem 1rem;
    justify-content: center;
  }
}
.contacto-home .contacto-cta-wrapper .cta-block-right .cta-item .cta-item-emoji {
  font-size: 2.2rem;
  line-height: 1;
  color: #ffffff;
  flex-shrink: 0;
}
@media (min-width: 576px) {
  .contacto-home .contacto-cta-wrapper .cta-block-right .cta-item .cta-item-emoji {
    font-size: 1.8rem;
  }
}
.contacto-home .contacto-cta-wrapper .cta-block-right .cta-item .cta-item-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.2rem 0;
  letter-spacing: 0.03em;
}
.contacto-home .contacto-cta-wrapper .cta-block-right .cta-item .cta-item-text p {
  font-size: 0.9rem;
  color: #ffffff;
  opacity: 0.9;
  margin: 0;
  line-height: 1.3;
}
.contacto-home .contacto-cta-wrapper .cta-block-right .cta-item-divider {
  width: 100%;
  height: 1px;
  background-color: #c28c3a;
  opacity: 0.4;
  margin: 0;
}
@media (min-width: 768px) {
  .contacto-home .contacto-cta-wrapper .cta-block-right .cta-item-divider {
    width: 1px;
    height: 60%;
    background-color: #c28c3a;
    margin: 0;
    align-self: center;
  }
}
@media (min-width: 768px) {
  .contacto-home .contacto-cta-wrapper .cta-block-right .cta-item-divider:last-child {
    display: none;
  }
}

/* ==================== MEMBRESÍA ASPIRANTE ==================== */
.membresia-aspirante {
  background-color: #f6f4f2;
  padding: 4rem 0;
}
.membresia-aspirante .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.membresia-aspirante .membresia-grid {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}
@media (min-width: 768px) {
  .membresia-aspirante .membresia-grid {
    flex-direction: row;
    gap: 0rem;
    align-items: flex-start;
  }
}
.membresia-aspirante .membresia-col-left {
  flex: 1.2;
  max-width: 49%;
}
.membresia-aspirante .membresia-col-left .membresia-header {
  margin-bottom: 1.5rem;
}
.membresia-aspirante .membresia-col-left .membresia-header .header-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.2rem;
}
.membresia-aspirante .membresia-col-left .membresia-header .header-emoji {
  font-size: 2.8rem;
  line-height: 1;
  color: #741417;
}
.membresia-aspirante .membresia-col-left .membresia-header h1 {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1c1c1e;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.3rem;
}
.membresia-aspirante .membresia-col-left .membresia-header h1 .oro {
  color: #c28c3a;
}
.membresia-aspirante .membresia-col-left .membresia-header .header-subtitle {
  font-size: 4rem;
  font-weight: 700;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #741417;
  margin-top: 2.5rem;
  line-height: 1.4;
  text-align: left;
  line-height: 1;
}
.membresia-aspirante .membresia-col-left .header-divider-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.membresia-aspirante .membresia-col-left .header-divider-wrapper .divider-line {
  width: 90px;
  height: 1px;
  background-color: #c28c3a;
  border-radius: 2px;
}
.membresia-aspirante .membresia-col-left .header-divider-wrapper .divider-emoji {
  font-size: 1.4rem;
  line-height: 1;
  color: #c28c3a;
}
.membresia-aspirante .membresia-col-left .membresia-descripcion {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #1c1c1e;
  margin-bottom: 2rem;
  max-width: 500px;
  font-weight: 500;
}
.membresia-aspirante .membresia-col-left .beneficios-box {
  background-color: #ffffff;
  border: 1px solid #c28c3a;
  border-radius: 1rem;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  max-width: 55rem;
}
.membresia-aspirante .membresia-col-left .beneficios-box .beneficios-titulo {
  font-size: 1.7rem;
  font-weight: 700;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #741417;
  margin: 0 0 1.2rem 0;
  text-align: left;
  letter-spacing: 0.05em;
}
.membresia-aspirante .membresia-col-left .beneficios-box .beneficios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .membresia-aspirante .membresia-col-left .beneficios-box .beneficios-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.membresia-aspirante .membresia-col-left .beneficios-box .beneficios-grid .beneficio-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid #c28c3a;
}
.membresia-aspirante .membresia-col-left .beneficios-box .beneficios-grid .beneficio-item:last-child {
  border-bottom: none;
}
.membresia-aspirante .membresia-col-left .beneficios-box .beneficios-grid .beneficio-item .beneficio-emoji {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1.2;
  color: #741417;
}
.membresia-aspirante .membresia-col-left .beneficios-box .beneficios-grid .beneficio-item p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  color: #1c1c1e;
}
.membresia-aspirante .membresia-col-left .beneficios-box .beneficios-grid .beneficio-item p strong {
  color: #741417;
}
@media (min-width: 768px) {
  .membresia-aspirante .membresia-col-left .beneficios-box .beneficios-grid .beneficio-item {
    border-bottom: 1px solid #c28c3a;
    border-right: 1px solid #c28c3a;
    padding: 1rem 0.8rem;
  }
  .membresia-aspirante .membresia-col-left .beneficios-box .beneficios-grid .beneficio-item:nth-child(2n) {
    border-right: none;
  }
  .membresia-aspirante .membresia-col-left .beneficios-box .beneficios-grid .beneficio-item:nth-child(5), .membresia-aspirante .membresia-col-left .beneficios-box .beneficios-grid .beneficio-item:nth-child(6) {
    border-bottom: none;
  }
}
.membresia-aspirante .membresia-col-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.membresia-aspirante .membresia-col-right .membresia-imagen {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.membresia-aspirante .membresia-col-right .membresia-imagen img {
  width: 100%;
  height: 29.7rem;
  display: block;
  object-fit: cover;
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box {
  background-color: #ffffff;
  border: 1px solid #c28c3a;
  border-radius: 1rem;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .membresia-aspirante .membresia-col-right .membresia-cuota-box {
    flex-direction: row;
    align-items: stretch;
    gap: 1.5rem;
  }
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-left .cuota-emoji {
  font-size: 2.5rem;
  line-height: 1;
  margin-top: 4rem;
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-left .cuota-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #1c1c1e;
  margin: 1rem 0 1rem 0;
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-left .cuota-info .cuota-monto {
  font-size: 4rem;
  font-weight: 700;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #741417;
  line-height: 1.1;
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-left .cuota-info .cuota-moneda {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #741417;
  display: inline-block;
  margin-left: 0.3rem;
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-left .cuota-info .cuota-divider {
  width: 100%;
  height: 1px;
  background-color: #c28c3a;
  border-radius: 2px;
  margin: 1rem 0 1rem;
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-left .cuota-info .cuota-descripcion {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-divider-vertical {
  width: 100%;
  height: 1px;
  background-color: #c28c3a;
  opacity: 0.4;
  margin: 0.5rem 0;
}
@media (min-width: 768px) {
  .membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-divider-vertical {
    width: 1px;
    height: auto;
    background-color: #c28c3a;
    margin: 0;
    align-self: stretch;
  }
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  flex: 1;
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-right .btn-cuota {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 100%;
  white-space: nowrap;
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-right .btn-cuota:hover {
  transform: scale(1.02);
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-right .btn-cuota .btn-arrow {
  font-size: 3rem;
  transition: transform 0.2s;
  color: #c28c3a;
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-right .btn-cuota:hover .btn-arrow {
  transform: translateX(4px);
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-right .btn-solicitar {
  background-color: #741417;
  color: #ffffff;
  border: none;
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-right .btn-solicitar:hover {
  box-shadow: 0 4px 12px rgba(116, 20, 23, 0.3);
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-right .btn-requisitos {
  background-color: #ffffff;
  color: #1c1c1e;
  border: 2px solid #c28c3a;
}
.membresia-aspirante .membresia-col-right .membresia-cuota-box .cuota-right .btn-requisitos:hover {
  box-shadow: 0 4px 12px rgba(194, 140, 58, 0.2);
}
.membresia-aspirante .membresia-bottom {
  margin-top: 3rem;
}
.membresia-aspirante .membresia-bottom .pilares-box {
  background-color: #ffffff;
  border: 1px solid #c28c3a;
  border-radius: 1rem;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
@media (min-width: 768px) {
  .membresia-aspirante .membresia-bottom .pilares-box {
    flex-direction: row;
    align-items: stretch;
  }
}
.membresia-aspirante .membresia-bottom .pilares-box .pilar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.5rem;
  flex: 1;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .membresia-aspirante .membresia-bottom .pilares-box .pilar-item {
    padding: 1rem 1.5rem;
    justify-content: center;
  }
}
.membresia-aspirante .membresia-bottom .pilares-box .pilar-item .pilar-emoji {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1.2;
  color: #741417;
}
.membresia-aspirante .membresia-bottom .pilares-box .pilar-item .pilar-texto h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1c1c1e;
  margin: 0;
  line-height: 1.3;
}
.membresia-aspirante .membresia-bottom .pilares-box .pilar-divider {
  width: 100%;
  height: 1px;
  background-color: #dee2e6;
  margin: 0;
}
@media (min-width: 768px) {
  .membresia-aspirante .membresia-bottom .pilares-box .pilar-divider {
    width: 1px;
    height: auto;
    align-self: stretch;
    background-color: #dee2e6;
    flex-shrink: 0;
  }
}

.membresia-quien-wrapper {
  background-image: url("../assets/img/quien-aspirante-bg.jpg"); /* Cambia por tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f6f4f2; /* fallback */
  padding: 3rem 0;
  margin-top: 3rem;
  width: 100%;
  position: relative;
}
.membresia-quien-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f6f4f2;
  z-index: 1;
  margin-top: -3rem;
}
.membresia-quien-wrapper .container {
  position: relative;
  z-index: 2;
}

.membresia-quien {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.membresia-quien .highlight-oro {
  color: #c28c3a;
}
.membresia-quien .quien-header h2 {
  font-size: 4rem;
  font-weight: 700;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #741417;
  margin: 0 0 0.5rem 0;
  margin-left: 30rem;
}
.membresia-quien .quien-header .quien-divider-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  margin-left: 48rem;
}
.membresia-quien .quien-header .quien-divider-wrapper .divider-line {
  width: 60px;
  height: 2px;
  background-color: #c28c3a;
  border-radius: 2px;
}
.membresia-quien .quien-header .quien-divider-wrapper .divider-emoji {
  font-size: 1.4rem;
  line-height: 1;
  color: #c28c3a;
}
.membresia-quien .quien-descripcion {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 65rem;
  text-align: center;
  margin-left: 15rem;
}
.membresia-quien .quien-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .membresia-quien .quien-items {
    flex-direction: row;
    gap: 1.5rem;
  }
}
.membresia-quien .quien-items .quien-item {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  max-width: 23.5rem;
}
.membresia-quien .quien-items .quien-item .quien-item-top {
  flex: 0 0 auto;
  height: 8rem;
}
.membresia-quien .quien-items .quien-item .quien-item-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.membresia-quien .quien-items .quien-item .quien-item-header .quien-item-emoji {
  font-size: 2.2rem;
  line-height: 1;
  color: #741417;
  flex-shrink: 0;
}
.membresia-quien .quien-items .quien-item .quien-item-header .quien-item-titulo {
  font-size: 2.5rem;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  font-weight: 700;
  color: #741417;
  margin: 0;
  line-height: 1.2;
}
.membresia-quien .quien-items .quien-item .quien-item-divider {
  width: 40px;
  height: 2px;
  background-color: #c28c3a;
  border-radius: 2px;
  margin-bottom: 0.8rem;
}
.membresia-quien .quien-items .quien-item .quien-item-texto {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  color: #1c1c1e;
  margin: 0;
  display: flex;
  align-items: flex-end;
}
.membresia-quien .quien-documentacion {
  background-color: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem 1.2rem;
  margin-top: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  max-width: 75rem;
}
.membresia-quien .quien-documentacion .documentacion-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}
.membresia-quien .quien-documentacion .documentacion-header .documentacion-emoji {
  font-size: 2.2rem;
  line-height: 1;
  color: #741417;
  flex-shrink: 0;
}
.membresia-quien .quien-documentacion .documentacion-header h3 {
  font-size: 3rem;
  font-weight: 700;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #741417;
  margin: 0;
}
.membresia-quien .quien-documentacion .documentacion-divider {
  width: 60px;
  height: 2px;
  background-color: #c28c3a;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.membresia-quien .quien-documentacion .documentacion-lista.horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  align-items: center;
}
.membresia-quien .quien-documentacion .documentacion-lista.horizontal li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #1c1c1e;
  padding: 0.3rem 0;
  position: relative;
  max-width: 13rem;
}
.membresia-quien .quien-documentacion .documentacion-lista.horizontal li .doc-emoji {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  color: #741417;
}
.membresia-quien .quien-documentacion .documentacion-lista.horizontal li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.5rem;
  background-color: #c28c3a;
  margin-left: 0.6rem;
}
.membresia-quien .quien-documentacion .documentacion-nota {
  font-size: 1.1rem;
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #6c757d;
  margin: 0;
  font-style: italic;
}

.membresia-formulario-wrapper {
  padding: 4rem 0 2rem;
  text-align: center;
}
.membresia-formulario-wrapper .membresia-formulario-header .form-title {
  font-size: 1rem;
  font-weight: 700;
  color: #c28c3a;
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
@media (min-width: 576px) {
  .membresia-formulario-wrapper .membresia-formulario-header .form-title {
    font-size: 1.5rem;
  }
}
.membresia-formulario-wrapper .membresia-formulario-header .form-divider {
  width: 80px;
  height: 2px;
  background-color: #c28c3a;
  margin: 0.5rem auto 1rem;
  border-radius: 2px;
}
.membresia-formulario-wrapper .membresia-formulario-header .form-subtitle {
  font-size: 3rem;
  font-weight: 700;
  color: #1c1c1e;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  margin-bottom: 0.8rem;
}
.membresia-formulario-wrapper .membresia-formulario-header .form-subtitle .highlight-vino {
  color: #741417;
}
@media (min-width: 576px) {
  .membresia-formulario-wrapper .membresia-formulario-header .form-subtitle {
    font-size: 4.5rem;
  }
}
.membresia-formulario-wrapper .membresia-formulario-header .form-description {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.6;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .membresia-formulario-wrapper .membresia-formulario-header .form-description {
    font-size: 1.5rem;
  }
}

.form-rectangulo {
  background-color: #ffffff;
  border: 1px solid #c28c3a;
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  margin-top: 2rem;
}
.form-rectangulo.form-rectangulo-solo .form-bloque-solo {
  padding: 2rem 1.5rem;
}

.form-rectangulo:not(.form-rectangulo-solo) {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .form-rectangulo:not(.form-rectangulo-solo) {
    flex-direction: row;
    align-items: stretch;
  }
}
.form-rectangulo:not(.form-rectangulo-solo) .form-bloque {
  flex: 1;
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .form-rectangulo:not(.form-rectangulo-solo) .form-bloque {
    padding: 2rem 2rem;
  }
}
.form-rectangulo:not(.form-rectangulo-solo) .bloque-divider {
  width: 100%;
  height: 1px;
  background-color: #c28c3a;
  opacity: 0.4;
  margin: 0;
}
@media (min-width: 768px) {
  .form-rectangulo:not(.form-rectangulo-solo) .bloque-divider {
    width: 1px;
    height: auto;
    background-color: #c28c3a;
    margin: 0;
    align-self: stretch;
  }
}

.form-bloque .bloque-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.form-bloque .bloque-header .bloque-emoji {
  font-size: 2.2rem;
  line-height: 1;
  color: #741417;
  flex-shrink: 0;
}
.form-bloque .bloque-header .bloque-titulo {
  font-size: 2rem;
  font-weight: 700;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #741417;
  margin: 0;
  line-height: 1.2;
}
.form-bloque .bloque-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-bloque .bloque-body .campo {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 100%;
  align-items: flex-start;
}
.form-bloque .bloque-body .campo label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1c1c1e;
}
.form-bloque .bloque-body .campo input,
.form-bloque .bloque-body .campo select {
  padding: 0.75rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #1c1c1e;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-bloque .bloque-body .campo input:focus,
.form-bloque .bloque-body .campo select:focus {
  outline: none;
  border-color: #741417;
  box-shadow: 0 0 0 3px rgba(116, 20, 23, 0.1);
}
.form-bloque .bloque-body .campo input::placeholder,
.form-bloque .bloque-body .campo select::placeholder {
  color: #adb5bd;
}
.form-bloque .bloque-body .campo select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='%23495057' d='M6 7L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-bloque .bloque-body .campo input[type=file] {
  padding: 0.5rem;
  border: 1px dashed #dee2e6;
  background-color: #f8f9fa;
  cursor: pointer;
}
.form-bloque .bloque-body .campo input[type=file]:hover {
  background-color: #e9ecef;
}
.form-bloque .bloque-body .campo .campo-ayuda {
  font-size: 0.8rem;
  color: #adb5bd;
  margin-top: 0.2rem;
}
.form-bloque .bloque-body .campo-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .form-bloque .bloque-body .campo-row {
    flex-direction: row;
    gap: 1.2rem;
  }
  .form-bloque .bloque-body .campo-row .campo {
    flex: 1;
  }
}
.form-bloque .bloque-body .checkboxes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 0.5rem 0;
}
@media (min-width: 768px) {
  .form-bloque .bloque-body .checkboxes-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.form-bloque .bloque-body .checkboxes-grid .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #1c1c1e;
  cursor: pointer;
}
.form-bloque .bloque-body .checkboxes-grid .checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #741417;
  flex-shrink: 0;
}
.form-bloque .bloque-body .documentacion-lorem {
  font-size: 1rem;
  line-height: 1.6;
  color: #1c1c1e;
  margin-bottom: 0.5rem;
}
.form-bloque .bloque-body .seguridad-mensaje {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(116, 20, 23, 0.04);
  border-radius: 0.5rem;
}
.form-bloque .bloque-body .seguridad-mensaje .seguridad-emoji {
  font-size: 1.6rem;
  line-height: 1;
  color: #741417;
}
.form-bloque .bloque-body .seguridad-mensaje p {
  font-size: 0.95rem;
  color: #1c1c1e;
  margin: 0;
  font-weight: 500;
}

.form-rectangulo-patrocinadores {
  display: block !important;
}
.form-rectangulo-patrocinadores .form-bloque-izquierdo {
  padding: 2rem 1.5rem;
}
@media (min-width: 768px) {
  .form-rectangulo-patrocinadores .form-bloque-izquierdo {
    padding: 2rem 2rem;
  }
}
.form-rectangulo-patrocinadores .asociados-nota {
  font-size: 1rem;
  color: #1c1c1e;
  margin-bottom: 1.5rem;
}
.form-rectangulo-patrocinadores .patrocinadores-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  .form-rectangulo-patrocinadores .patrocinadores-container {
    flex-direction: row;
    gap: 0;
    align-items: stretch;
  }
}
.form-rectangulo-patrocinadores .patrocinadores-container .patrocinador-col {
  flex: 1;
  padding: 0;
}
@media (min-width: 768px) {
  .form-rectangulo-patrocinadores .patrocinadores-container .patrocinador-col {
    padding: 0 1.5rem;
  }
  .form-rectangulo-patrocinadores .patrocinadores-container .patrocinador-col:first-child {
    padding-left: 0;
  }
  .form-rectangulo-patrocinadores .patrocinadores-container .patrocinador-col:last-child {
    padding-right: 0;
  }
}
.form-rectangulo-patrocinadores .patrocinadores-container .patrocinador-divider {
  width: 100%;
  height: 1px;
  background-color: #c28c3a;
  opacity: 0.4;
  margin: 1rem 0;
}
@media (min-width: 768px) {
  .form-rectangulo-patrocinadores .patrocinadores-container .patrocinador-divider {
    width: 1px;
    height: auto;
    margin: 0;
    background-color: #c28c3a;
    align-self: stretch;
  }
}
.form-rectangulo-patrocinadores .patrocinadores-container .asociado-subtitulo {
  font-size: 1.2rem;
  font-weight: 600;
  color: #741417;
  margin: 0 0 1rem 0;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
}
.form-rectangulo-patrocinadores .patrocinadores-container .campo {
  margin-bottom: 0.8rem;
}
.form-rectangulo-patrocinadores .patrocinadores-container .campo label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1c1c1e;
}
.form-rectangulo-patrocinadores .patrocinadores-container .campo input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: #ffffff;
  color: #1c1c1e;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-rectangulo-patrocinadores .patrocinadores-container .campo input:focus {
  outline: none;
  border-color: #741417;
  box-shadow: 0 0 0 3px rgba(116, 20, 23, 0.1);
}
.form-rectangulo-patrocinadores .patrocinadores-container .campo input::placeholder {
  color: #adb5bd;
}

.form-rectangulo-solo .form-bloque-solo .checkboxes-consentimiento {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.form-rectangulo-solo .form-bloque-solo .checkboxes-consentimiento .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: #1c1c1e;
  cursor: pointer;
  line-height: 1.5;
}
.form-rectangulo-solo .form-bloque-solo .checkboxes-consentimiento .checkbox-label input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #741417;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.form-rectangulo-solo .form-bloque-solo .form-actions {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
}
.form-rectangulo-solo .form-bloque-solo .btn-enviar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background-color: #741417;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  min-width: 220px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-rectangulo-solo .form-bloque-solo .btn-enviar:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(116, 20, 23, 0.3);
}
.form-rectangulo-solo .form-bloque-solo .btn-enviar .btn-arrow {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s;
  color: #ffffff;
}
.form-rectangulo-solo .form-bloque-solo .btn-enviar:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==================== PÁGINA EN CONSTRUCCIÓN ==================== */
.construccion {
  position: relative;
  background-color: #ffffff;
  padding: 4rem 0 2rem;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden; /* Para que la imagen de fondo no se salga */
}
.construccion .construccion-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: url("../assets/img/Construccion/Fondo2.webp");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  opacity: 0.6; /* Ajusta la opacidad para que el texto sea legible */
}
@media (min-width: 576px) {
  .construccion .construccion-bg {
    background-image: url("../assets/img/borrar/3.png");
  }
}
.construccion .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.construccion .construccion-logo {
  margin-bottom: 5rem;
}
.construccion .construccion-logo img {
  height: 20rem;
  width: auto;
  display: inline-block;
}
@media (min-width: 576px) {
  .construccion .construccion-logo {
    margin-bottom: 2rem;
  }
}
.construccion .construccion-titulo {
  font-size: 4rem;
  font-weight: 500;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
  color: #741417;
  margin: 0 0 1rem 0;
  letter-spacing: 0.1em;
}
@media (min-width: 576px) {
  .construccion .construccion-titulo {
    font-size: 6rem;
  }
}
.construccion .construccion-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.construccion .construccion-divider .divider-line {
  width: 80px;
  height: 2px;
  background-color: #c28c3a;
  border-radius: 2px;
}
@media (min-width: 576px) {
  .construccion .construccion-divider .divider-line {
    width: 200px;
  }
}
.construccion .construccion-divider .divider-emoji {
  font-size: 1.8rem;
  line-height: 1;
  color: #c28c3a;
  width: 3rem;
}
.construccion .construccion-subtitulo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000000;
  margin: 0 0 1.5rem 0;
  font-family: "Montserrat", "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 576px) {
  .construccion .construccion-subtitulo {
    font-size: 2.4rem;
  }
}
.construccion .construccion-linea-separadora {
  width: 100px;
  height: 2px;
  background-color: #c28c3a;
  margin: 0 auto 2rem;
  border-radius: 2px;
}
.construccion .construccion-texto {
  font-size: 1rem;
  line-height: 1.7;
  color: #1c1c1e;
  max-width: 800px;
  margin-top: 12rem;
  margin-bottom: -5rem;
  font-weight: 600;
}
.construccion .construccion-texto .destacado {
  color: #741417;
  font-weight: 700;
  font-size: 1.6rem;
}
@media (min-width: 576px) {
  .construccion .construccion-texto {
    font-size: 1.6rem;
    margin: 0 auto 2.5rem;
  }
}
.construccion .construccion-rectangulo {
  background-color: #f6f4f2;
  border: 1px solid #c28c3a;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  max-width: 700px;
  margin-top: 10rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
@media (min-width: 576px) {
  .construccion .construccion-rectangulo {
    margin: 0 auto;
  }
}
.construccion .construccion-rectangulo .rectangulo-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 0.8rem;
}
@media (min-width: 576px) {
  .construccion .construccion-rectangulo .rectangulo-header {
    gap: 0.8rem;
  }
}
.construccion .construccion-rectangulo .rectangulo-header .rectangulo-emoji {
  line-height: 1;
  color: #c28c3a;
  flex-shrink: 0;
  width: 5rem;
}
@media (min-width: 576px) {
  .construccion .construccion-rectangulo .rectangulo-header .rectangulo-emoji {
    font-size: 2.2rem;
    width: 10rem;
  }
}
.construccion .construccion-rectangulo .rectangulo-header .rectangulo-textos {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  margin-left: -5rem;
}
.construccion .construccion-rectangulo .rectangulo-header .rectangulo-frase {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1c1c1e;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media (min-width: 576px) {
  .construccion .construccion-rectangulo .rectangulo-header .rectangulo-frase {
    font-size: 1.5rem;
  }
}
.construccion .construccion-rectangulo .rectangulo-header .rectangulo-fecha {
  font-size: 2rem;
  font-weight: 700;
  color: #741417;
  background-color: transparent;
  display: inline-block;
  line-height: 1.3;
  margin-top: 0.2rem;
  padding: 0;
}
@media (min-width: 576px) {
  .construccion .construccion-rectangulo .rectangulo-header .rectangulo-fecha {
    font-size: 3rem;
  }
}
.construccion .construccion-rectangulo .rectangulo-mensaje {
  font-size: 1.1rem;
  color: #1c1c1e;
  font-weight: 700;
  margin: 0.5rem 0 0 0;
  line-height: 1.5;
  opacity: 0.8;
  text-align: center;
}
@media (min-width: 576px) {
  .construccion .construccion-rectangulo .rectangulo-mensaje {
    font-size: 1.4rem;
  }
}

.construccion-bottom-bar {
  background-color: #741417;
  position: relative;
  padding: 1.5rem 1rem;
  height: 10rem;
  margin-top: -8rem;
}
@media (min-width: 576px) {
  .construccion-bottom-bar {
    margin-top: -7rem;
  }
}
.construccion-bottom-bar .bottom-bar-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #c28c3a;
}
.construccion-bottom-bar .bottom-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "GFS Didot", "Times New Roman", Georgia, serif;
}
.construccion-bottom-bar .bottom-bar-content span {
  letter-spacing: 0.05em;
}
@media (min-width: 576px) {
  .construccion-bottom-bar .bottom-bar-content {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */
