/*Bordes, cuerpo*/
.borde {
  width: 100%;
  max-width: 75rem; 
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 2rem;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background: #f5f7fb;
  font-family: 'SUSE';
  margin: 0;
  padding: 0;
  overflow-x: hidden; 
  overflow-y: auto;
  box-sizing: border-box;
  font-family: 'SUSEType', Arial, sans-serif;
}

  
*, *::before, *::after {
  box-sizing: inherit;
}

/* MAIN CONTENT */
.main-content {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 2.5rem 0;
  border-radius: 0.8rem;

  /* FLEX */
  display: flex;
  flex-direction: column;
  align-items: center;   /* ← centramos para mobile */
  justify-content: flex-start;
  
  text-align: center;
  gap: 2.5rem;
}


/* Tipografía*/
@font-face {
  font-family: 'SUSE';
  src: url('../Fuente\ SUSE/SUSE-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
.suse-font {
  font-family: 'SUSE', Arial, sans-serif;
}


/* ============================================== */
/* CLASES UTILITARIAS COMUNES */
/* ============================================== */

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

/* Contenedores con max-width centralizados */
.container-centered {
    max-width: 1200px;
    margin: 0 auto;
}

.container-small {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

/* Background común (beige) */
.bg-beige {
    background-color: rgb(248, 240, 230);
}

/* Border radius común */
.rounded-sm {
    border-radius: 10px;
}

.rounded-lg {
    border-radius: 20px;
}

/* Espaciado de secciones */
.section-spacing {
    margin-top: 150px;
}

/* Padding común */
.padding-standard {
    padding: 40px;
}

.padding-section {
    padding: 2rem;
}

/* Sombras comunes */
.shadow-light {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.shadow-medium {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Transiciones comunes */
.transition-smooth {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Dimensiones de imagen responsive */
.img-responsive {
    width: 100%;
    height: auto;
}

/* Botón que se ve como imagen */
.boton-imagen {
    background: none;
    border: none;
    padding: 0;
    margin: 0;

    cursor: pointer;
    outline: none;
    display: inline-block;
}

.boton-imagen:focus {
    outline: none;
}

.boton-imagen:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.header, .nav-p{
    position: relative;
}

.nav-p{
    height: 70px;
    background-color: white;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    padding: 2px 20px;
    max-width: 1100px;
    border-radius: 0px 0px 12px 12px;
}
.logo{
    height: 100%;
}
.logo img{
    margin: 0px 10px 0px 50px;    
    width: auto;
    padding-top: 2px;
    height: 35px;
    object-fit: contain;
}

.nav-container{
    display: flex;
    gap: 15px;
    background-color: white;
}

.nav1{
    background-color: white;
    margin: 5px 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}
   
.nav2{
    margin: 13px 50px;
    display: flex; 
    gap: 10px;
    border-radius: 10px;
}


.nav1 a{
    background: none;
    text-decoration: none;
    color: #333;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav2 a{
    background: none;
    text-decoration: none;
    color: #f0f0f0;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav1 a:hover{
    background-color: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

.nav2 a:hover{
    color:#6b7a98;
    
}

/* Estado activo para el enlace de la página actual */
.nav1 a.pagina_actual {
    background-color: rgba(37, 99, 235, 0.2);
    color: #2563eb;
    font-weight: 600;
}

.nav2 a.pagina_actual {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 600;
}

/*hamburguesaaaa*/

.hamburguesa{
    position: fixed;
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: 18px;
}
.hamburguesa span {
    display: block;
    width: 28px;
    height: 4px;
    background: #2563eb;
    border-radius: 2px;
    transition: 0.3s;

}

@media (max-width: 850px) {
  main {
    padding-top: 80px;
  }
  
.nav-p {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 62px;
    z-index: 30;
    background: white;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
    border-radius: 0 0 12px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 60px;
    max-width: 100vw;
  }

  .nav-container {
    position: fixed;
    top: 62px; 
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    z-index: 2;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    width: 100%;
    border-radius: 0 0 14px 14px;
    padding-bottom: 20px;
    gap: 0;
    padding-top: 26px;
}

  .nav-container.open {
     display: flex;
    animation: fadeDown 0.25s;
  }
  
.hamburguesa {
   display: flex;
    position: absolute;
    right: 18px;
    top: 14px;
    z-index: 2;
    background: white;
    border-radius: 8px;
    padding: 6px;
  }

@keyframes fadeDown {
    0% { opacity: 0; transform: translateY(-12px);}
    100% { opacity: 1; transform: translateY(0);}
  }

.nav1, .nav2 {
    flex-direction: column;
    width: 100%;
    margin: 0;
    gap: 8px;
    background: none;
  }
  .nav1 a, .nav2 a {
    padding: 10px 20px;
    text-align: left;
    font-size: 1.3em;
    color: #2563eb;
    background: none;
    text-decoration: none;
    width: 100%;
    display: block;
  }
  .nav1 a:hover, .nav2 a:hover {
    background: #F3F7FF;
    color: #eb25cd;
  }
  
  /* Estado activo en móviles */
  .nav1 a.pagina_actual, .nav2 a.pagina_actual {
    background: #E3F2FD;
    color: #1976D2;
    font-weight: 600;
  }
}
.highlight {
    background-color: rgba(37, 99, 235, 0.2);
    color: #2563eb;
    font-weight: 600; 
    padding: 0.25rem 1rem;
    border-radius: 0.4rem;
}
/* Titulo contacto */
.titulo-contacto h1{
    font-family: 'SUSE', sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
    color: #333;
    margin: 0;
    text-align: center;
    justify-content: flex-start;
    color:#2563eb;
    margin-top: 2%;
}
.subtitulos p {
    font-family: 'SUSE', sans-serif;
    font-size: 1.5rem;
    color: #555;
    margin: 0;
    font-weight: normal;
    text-align: center;
    justify-content: flex-start;
    margin-bottom: 2.5rem;
}

/* Seccion de textos */
.seccion-textos {
  display: flex;
  flex-direction: row;        
  justify-content: space-between;
  align-items: flex-start;        
  max-width: 75rem;
  width: 100%;
  margin: 5rem auto;
  padding: 0 2.5rem;
  box-sizing: border-box;
  gap: 60px;
}

/* textos derecha */
.textos-derecha h2 {
    width: 100%;
    font-family: 'SUSE', sans-serif;
    font-size: 1.8rem;
    color: #333;
    margin: 0;
    line-height: 1.5;
    font-weight: normal;
    justify-content: flex-start;
    text-align: left;
}
.textos-derecha p {
    width: 100%;
    font-family: 'SUSE', sans-serif;
    font-size: 1.4rem;
    color: #555;
    /*margin: 0.5rem 0 0 0;*/
    line-height: 1.5;
    justify-content: flex-start;
    text-align: left;
}
.textos-derecha a {
  width: 50%;
  font-family: 'SUSE', sans-serif;
  font-size: 1.3rem;
  color: #555;
  /*margin: 0.5rem 0 0 0;*/
  line-height: 1.5;
  justify-content: flex-start;
  text-align: left;
}
.textos-derecha strong {
    font-weight: 600;
}
/* textos izquierda */
.textos-izquierda h2 {
    width: 100%;
    font-family: 'SUSE', sans-serif;
    font-size: 1.8rem;
    color: #333;
    margin: 0;
    line-height: 1.5;
    font-weight: normal;
    justify-content: flex-end;
    text-align: left;
}
.textos-izquierda p {
    width: 100%;
    font-family: 'SUSE', sans-serif;
    font-size: 1.4rem;
    color: #555;
    margin: 0.5rem 0 0 0;
    line-height: 1.5;
    justify-content: flex-end;
    text-align: left;
}
.textos-izquierda b {
  width: 80%;
  font-family: 'SUSE', sans-serif;
  font-size: 1.3rem;
  color: #555;
  margin: 0.5rem 0 0 0;
  line-height: 1.3;
  justify-content: flex-start;
  text-align: left;
}
.textos-izquierda strong {
    font-weight: 500;
}
/* Formulario */
.form-section {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  background-color: #f0f0f0; 
  padding: 3.75rem 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  text-align: center; 
  max-width: 80%; 
  width: 100%
}
:root {
  --input-max-width: 32rem; 
}
.form-container h3 {
  width: 100%;
  font-family: 'SUSE', sans-serif;
  font-size: 1.8rem;
  color: #333;
  margin: 0;
  line-height: 1.5;
  font-weight: normal;
  justify-content: flex-start;
  text-align: center;

}

.form-container p {
  width: 100%;
  font-family: 'SUSE', sans-serif;
  font-size: 1.4rem;
  color: #555;
  margin: 0.5rem 0 0 0;
  line-height: 1.5;
  justify-content: flex-start;
  text-align: center;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
}
/*.form-row, .full-form2 {
  justify-content: center;

}*/
.full-form2 input {

  flex: 1 1 calc(var(--input-max-width) *2) !important;
  max-width: calc(var(--input-max-width) *2) !important;
  justify-content: flex-start;

}
.full-form1 textarea {
  flex: 1 1 calc(var(--input-max-width) *2);
  max-width: calc(var(--input-max-width) *2);

}
.form-row input {
  flex: 1 1 100%;
  min-width: 16.25rem;
  max-width: var(--input-max-width);
  margin-top: 2rem;
  padding: 14px 18px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border 0.2s;
}

.form-row input:focus {
  border-color: #666;
}

/* Estilos del textarea */
.full-form1 textarea {
  min-height: 10rem;
  padding: 14px 18px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  outline: none;
  transition: border 0.2s;
}
.full-form2 input {
  padding: 14px 18px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  outline: none;
  transition: border 0.2s;
}
.contact-form textarea:focus {
  border-color: #666;
}

.contact-btn {
  margin-top: 0.625rem;
  padding: 0.75rem 1.75rem;
  background-color: #2563eb;
  color: #f0f0f0;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

.contact-btn:hover {
  background-color: #c0c0c0;
}


/*Footer*/
.Pie_Pagina {
    background-color: #2c3e50; /* Azul oscuro */
    color: white;
    padding: 60px 0 0 0;
    margin-top: 80px;
}

.lista_instrucciones{
    list-style-position: inside;
}

.Lista_recompensas{
    list-style-position: inside;
}

.Enlaces_Pie_Pagina {
    list-style: none;
    padding: 0;
    margin-top: 0; 
}

.Enlaces_Pie_Pagina li {
    margin-bottom: 10px;
    list-style: none;
}

.Enlaces_Pie_Pagina a {
    color: rgb(142, 142, 142);
    text-decoration: none;
    transition: color 0.3s ease;
}

.Enlaces_Pie_Pagina a:hover {
    color: #3498db;
}

/* === Nuevo Footer === */
.Footer {
    display: grid;
    gap: 32px;
    padding: 0 20px 40px 20px;
}

.Footer_Header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.Footer_Logo {
    width: 150px;
    height: 150px;
}

.Footer_Description {
    color: rgb(142, 142, 142);
    line-height: 1.6;
    max-width: 520px;
}

.Footer_Social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.Social_Link {
    color: #bdc3c7;
    text-decoration: none;
}

.Social_Icon {
    width: 28px;
    height: 28px;
}

.Footer_Columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

.Footer_Column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.Pie_Pagina_Inferior {
    background-color: #1a252f;
    padding: 20px 0;
    border-top: 1px solid #34495e;
}

.Pie_Pagina_Inferior .container-centered {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

.Enlaces_Legales {
    display: flex;
    gap: 20px;
}

.Enlace_Legal {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.Enlace_Legal:hover {
    color: #3498db;
}


/* Estilos para botón de cuenta y login */
.btn-cuenta {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "SUSE", sans-serif;
    font-weight: 500;
}

.btn-cuenta:hover {
    background: #007bff;
    color: white;
}

.btn-cuenta.logged-in {
    border-color: #28a745;
    color: #28a745;
}

.btn-cuenta.logged-in:hover {
    background: #28a745;
    color: white;
}

/* Estilos para el Dialog Modal de Login */
.login-dialog {
    border: none;
    border-radius: 12px;
    padding: 0;
    max-width: 400px;
    width: 90%;
    margin:auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.login-dialog::backdrop {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.dialog-content {
    padding: 2rem;
    position: relative;
}

.close-dialog {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-dialog:hover {
    color: #333;
}

.dialog-content h2 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.75rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 500;
    text-align: left;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: "SUSE", sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #007bff;
}

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
    min-height: 20px;
}

.btn-login {
    width: 100%;
    padding: 0.875rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: "SUSE", sans-serif;
}

.btn-login:hover {
    background: #0056b3;
}

.btn-login:disabled {
    background: #6c757d;
    cursor: not-allowed;
}



/* RESPONSIVE */
/* === Responsive MAIN === */
@media (max-width: 600px) {

  .borde {
    padding: 0 0.5rem;           
  }

  .main-content {
    padding: 0.75rem 0.5rem;           
    gap: 1rem;                 
  }

  .nav-p {
    height: 4.6rem;
    padding: 0.05rem 0.5rem;
    display: flex;
    align-items: center;
  }
  
  .logo img {
    margin: 0px 1rem;
    height: 4.5rem;
    padding: 0;
    object-fit: cover;
    object-position: top;
  }

  .nav-container {
    top: 4.6rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
  }

  .hamburguesa {
    right: 0.625rem;
    top: 0.75rem;
    padding: 0.25rem;
  }

  .hamburguesa span {
    width: 1.25rem;
    height: 0.1rem;
  }

  .nav1 a, .nav2 a {
    padding: 0.375rem 1.25rem;
    font-size: 1em;
  }

  main {
    margin-top: 4.6rem;
  }
}
  

@media (min-width: 601px) and (max-width: 1200px) {

  .borde {
    width: calc(100% - 4rem);
    padding: 0 2rem;
    margin: 0 auto;
  }

  .main-content {
    padding-inline: 2rem;
    max-width: 56.25rem;
  }

  body {
    font-size: clamp(15px, 2vw, 19px);
  }
}

@media (min-width: 1201px) {

  .main-content {
    max-width: 68.75rem;
    padding-inline: 2rem;
  }

  body {
    font-size: clamp(16px, 1.2vw, 20px);
  }
}
@media (min-width: 1201px) {
  .borde {
    width: 100%;
    max-width: 90rem; 
    padding: 0 3rem;
    margin: 0 auto;
  }

  .main-content {
    max-width: 85rem; 
    padding-inline: 3rem;
    align-items: flex-start;
    text-align: left;
    gap: 3rem; 
  }

  .hero-asegurados {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
}

/* === Responsive HEADER === */
@media (max-width: 850px) {
.nav-p {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 2.5rem;
    height: 3.875rem;
    z-index: 30;
    background: white;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
    border-radius: 0 0 0.75rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 3.75rem;
    max-width: 100vw;
  }

  .nav-container {
    position: fixed;
    top: 2.5rem; 
    left: 0;
    right: 0;
    bottom: 2.5rem;
    background: white;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
    z-index: 2;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    width: 100%;
    border-radius: 0 0 0.875rem 0.875rem;
    padding-bottom: 1rem;
    gap: 0;
    padding-top: 2.5rem;
}

  .nav-container.open {
     display: flex;
    animation: fadeDown 0.25s;
  }
  
.hamburguesa {
   display: flex;
    position: absolute;
    right: 18px;
    top: 14px;
    z-index: 2;
    background: white;
    border-radius: 8px;
    padding: 6px;
  }

@keyframes fadeDown {
    0% { opacity: 0; transform: translateY(-12px);}
    100% { opacity: 1; transform: translateY(0);}
  }

.nav1, .nav2 {
    flex-direction: column;
    width: 100%;
    margin: 0;
    gap: 8px;
    background: none;
  }
  .nav1 a, .nav2 a {
    padding: 10px 30px;
    text-align: left;
    font-size: 1.3em;
    color: #2563eb;
    background: none;
    text-decoration: none;
  }
  .nav1 a:hover, .nav2 a:hover {
    background: #F3F7FF;
    color: #eb25cd;
  }
  
  main {
    margin-top: 62px;
  }

  
}

/* Header / nav — responsive intermedio y desktop */
@media (min-width: 851px) and (max-width: 1200px) {
  /* Mostrar menú horizontal, ocultar hamburguesa y reducir tamaño del logo */
  .nav-p {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 5rem;
    padding: 0.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: none;
    background: white;
    max-width: 90rem;
    margin: 0 auto;
    border-radius: 0.5rem;
  }

  .logo img {
    height: 5rem;
    margin: 0 2rem;
    padding-top: 0.25rem;
    object-fit: contain;
  }

  .nav-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: none;
  }

  .nav1, .nav2 {
    flex-direction: row;
    gap: 0.75rem;
    margin: 0;
  }

  .nav1 a, .nav2 a {
    padding: 0.4rem 0.85rem;
    font-size: 1rem;
  }

  .hamburguesa {
    display: none; /* ocultamos en pantallas medianas */
  }
}
@media (min-width: 1201px) {
  .nav-p {
    height: 70px;
    background-color: white;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    padding: 2px 20px;
    max-width: 1100px;
    border-radius: 0px 0px 12px 12px;
    display: flex;
    
  }

  .logo img {
    height: 35px; /* Un poquito más grande que en mobile, pero no 160px */
    width: auto;  /* Deja que el ancho sea automático */
    margin: 0 2rem;
  }

  
  .nav-container {
    display: flex;
    gap: 15px;
    background-color: white;
    margin-left: auto;
  }

  .nav1 {
    margin: 5px 0px;
    display: flex;
    gap: 10px;
  }

  .nav1 a, .nav2 a {
    padding: 8px 16px;
    text-align: center;
    
  }

  .nav2 { 
    margin: 13px 0px;
    display: flex; 
    gap: 10px;
   
    border-radius: 10px;
  }
.nav2 a {
  margin-top: auto;
  margin-bottom: auto;
}


  .hamburguesa {
    display: none; 
  }
}

/* Responsive titulos*/ 
@media (max-width: 600px) {
  .titulo-contacto h1{
    font-size: 1.5rem;
    margin-top: 20%;
  }
 .subtitulos p {
    font-size: 1rem;
  }
}
@media (min-width: 601px) and (max-width: 850px){
  .titulo-contacto h1{
    font-size: 1.6rem;
  }
 .subtitulos p {
    font-size: 1.2rem;
  }
}
@media (min-width: 851px) and (max-width: 1200px){
  .titulo-contacto h1{
    font-size: 1.8rem;
  }
 .subtitulos p {
    font-size: 1.4rem;
  }
}
/* texto seccion */
@media (max-width: 600px) {
  .seccion-textos {
    flex-direction: column;
    padding: 0 1rem;
    gap: 2rem;
  }
}
@media (min-width: 601px) and (max-width: 850px){
  .seccion-textos {
    flex-direction: column;
    padding: 0 1.5rem;
    gap: 2.5rem;
  }
}
@media (min-width: 851px) and (max-width: 1200px){
  .seccion-textos {
    flex-direction: row;
    padding: 0 2rem;
    gap: 3rem;
  }
}
/* responsive textos*/
@media (max-width: 600px) {
  .textos-derecha h2, .textos-izquierda h2 {
    font-size: 1.2rem;
  }
  .textos-derecha p, .textos-izquierda p {
    font-size: 1rem;
  }
  .textos-derecha a, .textos-izquierda b {
    font-size: 0.9rem;
  }
}
@media (min-width: 601px) and (max-width: 850px){
  .textos-derecha h2, .textos-izquierda h2 {
    font-size: 1.4rem;
  }
  .textos-derecha p, .textos-izquierda p {
    font-size: 1.2rem;
  }
  .textos-derecha a, .textos-izquierda b {
    font-size: 1rem;
  }
}
@media (min-width: 851px) and (max-width: 1200px){
  .textos-derecha h2, .textos-izquierda h2 {
    font-size: 1.6rem;
  }
  .textos-derecha p, .textos-izquierda p {
    font-size: 1.4rem;
  }
  .textos-derecha a, .textos-izquierda b {
    font-size: 1.2rem;
  }
}
/* responsive formulario*/
@media (max-width: 600px) {
  .form-section {
    padding: 2rem 1rem;
  }
  .form-container h3 {
    font-size: 1.2rem;
  }
  .form-container p {
    font-size: 0.9rem;
  }
  .contact-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}
@media (min-width: 601px) and (max-width: 850px){
  .form-section {
    padding: 2.5rem 1.5rem;
  }
  .form-container h3 {
    font-size: 1.4rem;
  }
  .form-container p {
    font-size: 1rem;
  }
  .contact-btn {
    font-size: 1rem;
    padding: 0.6rem 1.25rem;
  }
}
@media (min-width: 851px) and (max-width: 1200px){
  .form-section {
    padding: 3rem 2rem;
  }
  .form-container h3 {
    font-size: 1.6rem;
  }
  .form-container p {
    font-size: 1.2rem;
  }
  .contact-btn {
    font-size: 1.1rem;
    padding: 0.7rem 1.5rem;
  }
}



/* Footer: asegurar tres columnas alineadas en pantallas grandes */
@media (min-width: 992px) {
    .Contenido_Pie_Pagina {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

@media (min-width: 992px) {
    .Footer_Columns { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1200px) and (max-width: 1600px) {
    .Footer_Columns { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1601px) {
    .Footer_Columns { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 575px) {
    .Footer_Header { align-items: center; text-align: center; }
    .Footer_Columns { grid-template-columns: 1fr; }
}


