body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    width: 100%;
    overflow-x: hidden;
    height: 100vh;
}

header {
    background-color: #3cb371; /* Verde bandera */
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bg-main{
  background: rgba(51, 50, 50, 0.16);
}

.logotipo{
  width: 13rem;
}

.logotipofooter{
 width: 80%;
}
@media (min-width: 7710px) and (max-width: 1000px){
  .logotipofooter{
    width: 80%;
   }
}
@media (min-width: 600px) and (max-width: 770px){
  .logotipofooter{
    width: 50%;
   }
}
@media (min-width: 400px) and (max-width: 599px){
  .logotipofooter{
    width: 40%;
   }
}

nav {
    display: flex;
    align-items: center;
}

.no-decoration  {
  text-align: center;
  color: white;
  font-size: 2rem; /* Tamaño inicial */

}

@media (min-width: 900px) and (max-width: 1000px){
  .no-decoration  {
    text-align: center;
    color: white;
    font-size: 1.3rem; /* Tamaño inicial */ 
  }
}
@media (min-width: 600px) and (max-width: 899px){
  .no-decoration  {
    text-align: center;
    color: white;
    font-size: 1.2rem; /* Tamaño inicial */ 
  }
}
@media (min-width: 571px) and (max-width: 599px){
  .no-decoration  {
    text-align: center;
    color: white;
    font-size: 1.1rem; /* Tamaño inicial */ 
  }
}
@media (min-width: 300px) and (max-width: 570px){
  .no-decoration  {
    text-align: center;
    color: white;
    font-size: 1.6rem; /* Tamaño inicial */ 
  }
}


.no-decoration:hover{
  color: white;
  text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: absolute;
    z-index: 10;
}

.section {
    margin: 40px 0;
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section img {
    width: 100%;
    border-radius: 8px;
}

.cta {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    background-color: #e0f7e3;
    border-radius: 8px;
    font-size: 24px;
    font-weight: bold;
    color: #3cb371;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #3cb371;
    color: white;
    height: auto;
}
canvas {
  display: block;
  width: 100%; /* Asegúrate de que el ancho no exceda el contenedor */
  height: 100%; /* Opcional: ajusta según sea necesario */
  max-width: 100vw; /* Previene el desbordamiento horizontal */
  max-height: 100vh; /* Previene el desbordamiento vertical */
  margin: 0; /* Elimina márgenes adicionales */
  padding: 0;
  overflow: hidden;
}

.responsive-svg{
  width: 70%; /* 50% del contenedor */
  max-height:auto ; /* Mantiene la proporción */
}
@media (min-width: 300px) and (max-width: 570px){
  .responsive-svg{
    width: 100%; /* 50% del contenedor */
    max-height:auto ; /* Mantiene la proporción */
  }
}

