

body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align:center;
}

main {
    flex: 1;
    padding: 20px;
    text-align: center;
    margin-top: 60px; 
}

main h1 {
    color: #000000;
}

h2 {
    color: #ffffff;
    margin: 50px 50px 50px 0;
    font-family: 'Montserrat';
    text-align: left;

    font-size: clamp(32px, 4vw, 4vw);
}

h3 {
    color: #ffffff;
    font-size: 2vw;
    margin: 0;
    font-family: 'Montserrat';
}

.sobre{
    display: flex;
}

.ladoizq{
    width: 90%;
    padding: 20px 20px 20px 5%;
    text-align:justify;
    line-height: 1.5;
    font-size: 18px;
}

.ladoizq p{
    padding: 10px;
}

.ladoder{
    width: 100%;
    padding: 20px;
}

section {

    padding: auto;
    height: auto;
    overflow: auto;
    overflow: hidden;

}

.cartas{
    margin-left: 5%;
    overflow: auto;
    display:inline-block;
    text-align:center;
    transition: all 2s ease-in-out;
}

.carta{
    background-image: url('../Assets/IMG/espejo.jpg');
    background-blend-mode:normal;
    background-size:cover;
    background-color: rgb(65, 65, 65);
    width: 30%;
    height: 600px;

    border-radius: 20px;
    float: left;
    padding: 10px;
    font-size:20px;
    transition: all 1s ease;
}

.carta h3{
    margin-top:50px;
}
.carta p{
    margin-top:20px;
    opacity:0.1;
}

.carta:hover{
    background-blend-mode:multiply;
}

.carta p:hover{
    opacity: 1;
    transition: all 1s ease;
}

@media only screen and (max-width: 1800px) {
    .carta{
        margin:10px; /* The width is 100%, when the viewport is 800px or smaller */
    }
}

@media only screen and (max-width: 1350px) {
    .carta{
        margin:5px; /* The width is 100%, when the viewport is 800px or smaller */
    }
}


@media only screen and (max-width: 1100px) {
    .carta{
      width: 92%; /* The width is 100%, when the viewport is 800px or smaller */
      height:100%;
    }
}

.p1{
    line-height: 2;
}

.foto{
    background-color: #333;
    width:100%;
    border-radius: 20px;
}

@media only screen and (max-width: 1000px) {
    .ladoder{
      width: 100%; 
    }
    .ladoizq{
        width: 100%; 
      }
    .sobre{
        display: block;
    }
}

.seccion{
    width: 85%;
    text-align: center;
    margin: auto;
}


.galeria-horizontal {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.img-gal {
  flex: 1 1 30%;
  max-width: 30%;
}

.img-gal img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

@media (max-width: 768px) {
  .img-gal {
    flex: 1 1 100%;
    max-width: 90%;
  }
}
.gal-text{
    margin: 50px 0 30px 0;
}


.apoya-causa {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.apoya-causa h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.apoya-causa p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1em;
  color: #555;
}

.organizaciones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.organizacion {
  background-color: #ffffff21;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 300px;
  text-align: left;
}

.organizacion img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.organizacion h3 {
  font-size: 1.5em;
  margin: 15px 0 10px;
}

.organizacion p {
  font-size: 1em;
  color: white;
  margin-bottom: 15px;
}

.organizacion a {
  display: inline-block;
  padding: 5px 10px 5px 10px;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.organizacion a:hover {
    color: black;
}

.cont2{
    margin-bottom:50px;
    width: 100%;
}

.ladoizq2{
    float: left;
    width: 60%;
    padding-left: 6%;
    text-align: left;
    
}

.ladoder2{
    float: right;
    width: 28%;
    margin-top: 100px;
}

.tarjetas-equipo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.tarjeta {
    background-color: #ffffff21;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  flex: 1 1 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tarjeta img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.tarjeta h3 {
  margin-top: 10px;
  font-size: 1.2em;
}

.tarjeta p {
  font-size: 0.9em;
  color: white;
}

.tarjeta a {
  display: inline-block;
  margin-top: 10px;
  color: white;
  text-decoration: none;
  font-family: Montserrat;
}

.tarjeta a b{
    color:#FFA800;
}

.tarjeta a:hover {
  text-decoration: underline;
}

