html, body {
  max-width: 100%;
  overflow-x: hidden; /* Evita scroll fantasma */
}

#include-contact {
  min-height: 100vh; /* ajusta según el tamaño que suele tener tu sección */
  display: block;
}

#presentation-empress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-left: auto; /* mantiene alineado el lado izquierdo */
    height: 90vh;
    /* Límite solo a la izquierda */
    padding-left: max(calc((100% - 1500px) / 2), 0px);
}

#presentation-empress .grid-section {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 2000px; /* 🔹 límite que pediste */
    margin: 0 auto;
}

#presentation-empress .container-text {
  justify-content: center;
  align-items: center;
  padding-left: 40px;   /* 🔹 margen solo a la izquierda */
}

#presentation-empress h1 {
    margin-bottom: 0;
    line-height: 1;
    color: rgb(0, 15, 29);
}

#presentation-empress p {
    margin-top: 0;
    margin-bottom: 100px;
    color: rgb(0, 15, 29);
    font-size: 18px;
    font-weight: 100;
}

#presentation-empress button{
    font-size: 1.3em;
    font-weight: bold;
    padding: 24px 32px;
    border-radius: 4px;
    color: rgb(0, 15, 29);
    background-color: rgb(254, 215, 48); 
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 80px;

    /* 🔹 Bordes superiores y derechos bien marcados */
    border-bottom: 10px solid rgb(0, 15, 29);   /* borde de arriba */
    border-right: 10px solid rgb(0, 15, 29); /* borde de la derecha */

    /* 🔹 sin otros bordes */
    border-top: 3px solid rgb(0, 15, 29);
    border-left: 3px solid rgb(0, 15, 29);
}

#presentation-empress button:hover {
    background: rgb(250, 200, 30);
}

#presentation-empress .icon-first03 {
  height: 26em;
  display: block;
  margin: 0 auto; /* 🔹 centrado siempre */
}

/* ===== SOBRE NOSOTROS ===== */
#sobre-nosotros {
  background-color: rgb(0, 15, 29);
}

#sobre-nosotros .container {
display: flex;
  align-items: center;   /* 🔹 ambos inician a la misma altura */
  justify-content: space-between;   /* 🔹 todo centrado en horizontal */
  gap: 20px;                 /* 🔹 separación entre imagen y texto */
  margin: auto;
  min-height: 95vh;          /* 🔹 ocupa buena altura */
  max-width: 1600px;
  padding-left: 40px;
  padding-right: 40px;
}

#sobre-nosotros .icon-second {
  height: 34em;
  width: auto;
}

#sobre-nosotros .icons-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;   /* 🔹 imagen inicia alineada arriba */
  flex: 1;
}

#sobre-nosotros .img-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  flex: 1;
  text-align: right;
}

#sobre-nosotros h2 {
  margin-bottom: 0;
  line-height: 1.2;
  color: rgb(247, 247, 247);
}

#sobre-nosotros p {
  margin-top: 0;
  margin-bottom: 120px;
  color: rgb(247, 247, 247);
  font-size: 14px;
  font-weight: 100;
}

#sobre-nosotros button {
  font-size: 1.2rem;          /* 🔹 tamaño más adaptable */
  background-color: #007aff;
  color: rgb(247, 247, 247);
  font-weight: bold;
  padding: 22px 30px;       /* 🔹 menos alto, más compacto */
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 100px;
}

#sobre-nosotros button:hover {
  background: #0059be;
}




/* Escalado progresivo del texto hasta 1200px */
@media (max-width: 1600px){
    #presentation-empress h1{ font-size: 6.8em;}
    #presentation-empress .icon-first03{height: 24em;}

    #sobre-nosotros h2 { font-size: 2.8em; }
    #sobre-nosotros .icon-second { height: 30em; }
}

@media (max-width: 1550px){
  #presentation-empress h1{ font-size: 6.4em;}
}

@media (max-width: 1450px){
  #presentation-empress h1{ font-size: 6em;}
}

@media (max-width: 1400px){
  #presentation-empress h1{ font-size: 5.4em;}
  #presentation-empress .icon-first03{height: 20em;}

  #sobre-nosotros h2 { font-size: 2.5em; }
  #sobre-nosotros .icon-second { height: 26em; }
  #sobre-nosotros p{ font-size: 13px;}
}

@media (max-width: 1250px){
  #presentation-empress h1{ font-size: 5.2em;}


   #sobre-nosotros h2 { font-size: 2.2em; }
  #sobre-nosotros .icon-second { height: 25em; }
  #sobre-nosotros p{ font-size: 11px;}
}

@media (max-width: 1200px){
    #presentation-empress {
        display: flex;
        flex-direction: column;   /* 🔹 texto arriba, imagen abajo */
        align-items: center;      /* 🔹 centra horizontal */
        justify-content: flex-start; 
        text-align: center;       /* 🔹 centra el texto */
        height: auto;
        padding-left: 0;          /* 🔹 elimina padding lateral */
        margin: 0 auto;   
    }
    
    #presentation-empress h1{ 
      font-size:  6.6em;
      padding-top: 80px;
    }

    #presentation-empress .container-text {
        margin: 0 auto 40px auto; /* 🔹 centra el bloque */
        padding: 0;               /* 🔹 elimina padding */
        text-align: center;       /* 🔹 centra el contenido dentro */
        width: 100%;              /* 🔹 ocupa ancho disponible */
        max-width: 100%;
    }

    #presentation-empress .grid-section {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;  /* 🔹 asegura centrado de la imagen */
    }

    #presentation-empress .icon-first03 {
        height: 28em;
        margin: 0 auto;           /* 🔹 imagen siempre centrada */
        display: block;
    }



    #sobre-nosotros .container {
    flex-direction: column;  /* 🔹 texto arriba, imagen abajo */
    align-items: center;
    text-align: center;
  }

  #sobre-nosotros .img-container {
    align-items: center;
    order: -1;
    text-align: center;
  }

  #sobre-nosotros h2 { font-size: 4em; padding-top: 20px; }
  #sobre-nosotros p{ 
    font-size: 16px;
  }
  #sobre-nosotros button{
    font-size: 1.2rem;          /* 🔹 tamaño más adaptable */
    padding: 20px 28px;       /* 🔹 menos alto, más compacto */
    margin-bottom: 20px;
  }

  #sobre-nosotros p {
    margin-bottom: 60px;
  }

  #sobre-nosotros .icon-second {
    height: 26em;
  }
}

@media (max-width: 900px){
  #sobre-nosotros h2 { font-size: 3.6em; padding-top: 20px;}
  #sobre-nosotros p{ 
    font-size: 16px;
    margin-bottom: 60px;
  }

  #sobre-nosotros button{
    font-size: 1.2em;
    margin-bottom: 2px;
  }

  #sobre-nosotros .icon-second {
    display: flex;
    align-items: flex-start;
    height: 24em;
  }
}

@media (max-width: 850px){
    #presentation-empress h1{ 
      font-size:  5.2em;
      padding-top: 20px;
    }
    #presentation-empress p{ font-size: 1rem; margin-bottom: 60px; }
    #presentation-empress button{ margin-bottom: 20px; font-weight: bold; }
    #presentation-empress .icon-first03{height: 18em;}
}

@media (max-width: 800px){
  #sobre-nosotros h2 { font-size: 3em; padding-top: 60px; }
  #sobre-nosotros p{ 
    font-size: 14px;
  }
  #sobre-nosotros .icon-second {
    height: 22em;
  }
}

@media (max-width: 750px){
  #presentation-empress h1{ 
    font-size: 4.4em;
    padding-top: 30px;
  }
  #presentation-empress p{
    margin-bottom: 80px;
  }
  #presentation-empress button{
    margin-bottom: 40px;
  }

  #sobre-nosotros h2 { font-size: 2.8em; padding-top: 60px; }
  #sobre-nosotros p{ 
    font-size: 12px;
  }
}

@media (max-width: 650px){
  #presentation-empress h1{ 
    font-size: 4em;
    padding-top: 40px;
  }
  #presentation-empress p{
    margin-bottom: 90px;
  }
  #presentation-empress button{
    margin-bottom: 50px;
  }

  #sobre-nosotros h2 { font-size: 2.5em; padding-top: 60px; }

  #sobre-nosotros .icon-second{height: 20em;}
}

@media (max-width: 574px){
  #sobre-nosotros h2 { font-size: 2.3em; padding-top: 60px; }
}

@media (max-width: 550px){
  #presentation-empress h1{ 
    font-size: 3.6em
  }

  #sobre-nosotros h2{
    font-size: 2em;
  }

  #sobre-nosotros p{
    font-size: 10px;
  }

  #sobre-nosotros .icon-second{height: 16em;}
}

@media (max-width: 480px){
    #presentation-empress h1{ 
      font-size: 3em;
      padding-top: 40px;
    }
      #presentation-empress p{
        font-size: 12px;
      }
    #presentation-empress .icon-first03 {
        height: 14em;
    }
    
    #presentation-empress p {    
      margin-bottom: 40px;
    }

    #presentation-empress button{
    padding: 20px 26px;
    border-radius: 4px;
    margin-bottom: 20px;
  }


  #sobre-nosotros .container {
  padding-left: 12px;
  padding-right: 12px;
}


  #sobre-nosotros h2 { font-size: 1.8em; padding-top: 60px; }
  #sobre-nosotros p{ 
    font-size: 9px;
    margin-bottom: 80px;
  }

  #sobre-nosotros button{
    font-size: 1.2em;
    padding: 20px 26px;
    border-radius: 4px;
    margin-bottom: 0px;
  }

  #sobre-nosotros .icon-second {
    height: 14em;
  }

}

@media (max-width: 400px){
    #presentation-empress h1{ font-size: 2.8em }
      #presentation-empress p{
        font-size: 12px;
      }
    #presentation-empress .icon-first03 {
        height: 14em;
    }
}

@media (max-width: 380px){
    #presentation-empress h1{ 
      font-size: 2.3em;
      padding-top: 20px; 
    }
      #presentation-empress p{
        font-size: 8px;
      }
    #presentation-empress .icon-first03 {
        height: 10em;
    }

    #presentation-empress button{
    font-size: 0.9em;
    padding: 16px 20px;
    border-radius: 4px;
    margin-bottom: 10px;

     /* 🔹 Bordes superiores y derechos bien marcados */
    border-bottom: 8px solid rgb(0, 15, 29);   /* borde de arriba */
    border-right: 8px solid rgb(0, 15, 29); /* borde de la derecha */

    /* 🔹 sin otros bordes */
    border-top: 2px solid rgb(0, 15, 29);
    border-left: 2px solid rgb(0, 15, 29);
  }

  #presentation-empress p {    
    margin-bottom: 40px;
    font-size: 10px;
  }

  #sobre-nosotros button{
    font-size: 0.9em;
    padding: 16px 20px;
    border-radius: 4px;
    margin-bottom: 10px;
  }

}