/* *{
    margin: 0px;
}

body{
    margin: 0px;
    background-color: #B3B6B7;
}

.contenedor div{
    display: flex;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    align-items: center;
    padding-top: 80px;
}

.contenedor div img{
    height: 500px;
}

.contenedor div section{
    text-align: right;
    font-family: 'Share Tech',sans-serif; 
}

.contenedor div section h1{
    font-size: 25px;
    font-weight: bold;
}

.contenedor div section h2{
    font-size: 40px;
}

.contenedor div section p{
    font-size: 18px;
}

.contenedor div section button{
    color: white;
    background-color: #FF0000;
    border: none;
    height: 40px;
    width: 150px;
    margin-top: 20px;
    border-radius: 10px;
    font-size: 14px;
}

.contenedor div section button:hover{
    cursor: pointer;
}

.btn:hover {
  background-color: #b19207;
}


.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-contenido {
  background-color: #fff;
  color: #333;
  margin: 15% auto;
  padding: 25px;
  border-radius: 12px;
  width: 600%;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(175, 7, 7, 0.3);
  animation: aparecer 0.3s ease;
  text-align: center;
  font-family: "Oswald", sans-serif;
}

@keyframes aparecer {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

.cerrar {
  color: #e50914;
  float: right;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  
}

.cerrar:hover {
  color: #b19207;
} */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #B3B6B7;
    font-family: 'Share Tech', sans-serif;
}

/* CONTENEDOR PRINCIPAL */
.contenedor div{
    display: flex;
    width: 60%;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    padding-top: 200px;
    gap: 30px;
}

/* IMAGEN */
.contenedor div img{
    height: 500px;
    /* max-width: 100%; */
}

/* TEXTO */
.contenedor div section{
    text-align: right;
}

.contenedor div section h1{
    font-size: 25px;
    font-weight: bold;
}

.contenedor div section p{
    font-size: 18px;
}

/* BOTÓN */
.contenedor div section button{
    color: white;
    background-color: #FF0000;
    border: none;
    height: 40px;
    width: 150px;
    margin-top: 20px;
    border-radius: 10px;
    font-size: 14px;
}

.contenedor div section button:hover{
    cursor: pointer;
    background-color: #b19207;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.modal-contenido {
  background-color: #fff;
  color: #333;
  margin: 10% auto;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(175, 7, 7, 0.3);
  animation: aparecer 0.3s ease;
  text-align: center;
  font-family: "Oswald", sans-serif;
}

@keyframes aparecer {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

.cerrar {
  color: #e50914;
  float: right;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.cerrar:hover {
  color: #b19207;
}

/* ========================= */
/* 📱 RESPONSIVE TABLET */
/* ========================= */
@media (max-width: 1024px) {
    .contenedor div{
        width: 80%;
        padding-top: 200px;
    }

    .contenedor div img{
        height: 400px;
    }

    .contenedor div section h1{
        font-size: 22px;
    }
}

/* ========================= */
/* 📱 RESPONSIVE CELULAR */
/* ========================= */
@media (max-width: 768px) {
    .contenedor div{
        flex-direction: column;
        width: 90%;
        text-align: center;
        padding-top: 300px;
    }

    .contenedor div section{
        text-align: center;
    }

    .contenedor div img{
        height: 300px;
    }

    .contenedor div section h1{
        font-size: 20px;
    }

    .contenedor div section p{
        font-size: 16px;
    }
}

/* 📱 CELULARES PEQUEÑOS */
@media (max-width: 480px) {
    .contenedor div img{
        height: 250px;
    }

    .contenedor div section h1{
        font-size: 18px;
    }

    .contenedor div section button{
        width: 100%;
    }

    .modal-contenido{
        padding: 20px;
    }
}
