 /*
    Theme Name: Medra Theme
    Theme URI: 
    Author: Josúe Antonio Contreras Guzmán
    Author URI: 
    Description: Tema desarrollado para Medra Marketing.
    Version: 1.0.1
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: 
    Text Domain: Medra Marketing 
*/

 :root {

     /** Fuentes **/
     --fuente-unboundedLigth: 'Unbounded-Light', sans-serif;
     --fuente-unboundedRegular: 'Unbounded-Regular', sans-serif;
     --fuente-unboundedMedium: 'Unbounded-Medium', sans-serif;

     --fuente-ralewayLigth: "Raleway-Light", sans-serif;
     --fuente-ralewayRegular: "Raleway-Regular", sans-serif;

     --fuente-poppinsLight: "Poppins-Light", sans-serif;
     --fuente-poppinsRegular: "Poppins-Regular", sans-serif;
     --fuente-poppinsMedium: "Poppins-Medium", sans-serif;
     --fuente-poppinsSemiBold: "Poppins-SemiBold", sans-serif;

     /** Colores **/
     --color-blanco: #fff;
     --color-negro: #000;
     --color-gris: #9b9b9b;
     --color-primario: #FF5352;
     --color-secundario: #7e5fc0;
     --color-tercero: #383a3f;
     --color-cuarto: #262b30;
     --color-quinto: #a4da6d;
     --color-sexto: #5d646a;
     --color-morado: #7e5fc0;
     --color-aqua: #66b5ae;
 }

 @font-face {
     font-family: 'Unbounded-Light';
     src: url('fonts/Unbounded-Light.ttf');
     font-weight: bold;
     font-style: bold;
 }

 @font-face {
     font-family: 'Unbounded-Regular';
     src: url('fonts/Unbounded-Regular.ttf');
     font-weight: bold;
     font-style: bold;
 }

 @font-face {
     font-family: 'Unbounded-Medium';
     src: url('fonts/Unbounded-Medium.ttf');
     font-weight: bold;
     font-style: bold;
 }

 @font-face {
     font-family: 'Raleway-Light';
     src: url('fonts/Raleway-Light.ttf');
     font-weight: bold;
     font-style: bold;
 }

 @font-face {
     font-family: 'Raleway-Regular';
     src: url('fonts/Raleway-Regular.ttf');
     font-weight: bold;
     font-style: bold;
 }

 @font-face {
     font-family: 'Poppins-Light';
     src: url('fonts/Poppins-Light.ttf');
     font-weight: bold;
     font-style: bold;
 }

 @font-face {
     font-family: 'Poppins-Regular';
     src: url('fonts/Poppins-Regular.ttf');
     font-weight: bold;
     font-style: bold;
 }

 @font-face {
     font-family: 'Poppins-Medium';
     src: url('fonts/Poppins-Medium.ttf');
     font-weight: bold;
     font-style: bold;
 }

 @font-face {
     font-family: 'Poppins-SemiBold';
     src: url('fonts/Poppins-SemiBold.ttf');
     font-weight: bold;
     font-style: bold;
 }

 html {
     box-sizing: border-box;
     font-size: 62.5%;
     margin: 0;
     padding: 0;
     height: 100%;
     overflow-x: hidden;
 }

 *,
 *:before,
 *:after {
     box-sizing: inherit;

 }

 body {
     font-family: var(--fuente-headings);
     font-size: 1.8rem;
     line-height: 2;
     scrollbar-color: var(--color-primario) var(--color-blanco);
     scrollbar-width: auto;
     margin: 0;
     padding: 0;
     height: 100%;
     overflow-x: hidden;
     background-color: var(--color-blanco);
 }


 /** globales **/

 p {
     margin: 0;
 }

 a {
     text-decoration: none;
 }

 ul {
     list-style: none;
     margin: 0;
     padding: 0;
 }

 img {
     display: block;
     max-width: 100%;
     height: auto;
 }

 hr {
     border: 1px solid var(--gris-claro);
 }

 .contenedor {
     width: min(95%, 140rem);
     margin: 0 auto;
 }

 .texto-centrado {
     text-align: center;
 }

 /* Menu Medra */
 .menu {
     opacity: 0;
     visibility: hidden;
     position: absolute;
     width: 50%;
     height: 100vh;
     top: 0;
     left: 0;
     bottom: 0;
     background-color: var(--color-cuarto);
     padding: 10rem 2rem;
     z-index: 1000;
     transition: opacity 0.3s ease, visibility 0.3s ease;
     overflow-y: auto;
     position: fixed;
 }

 .no-scroll {
     overflow: hidden;
 }

 .menu-visible {
     opacity: 1;
     visibility: visible;
 }

 .menu ul {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .menu ul li a {
     color: var(--color-blanco);
     font-size: 2.4rem;
     font-family: var(--fuente-unboundedMedium);
     text-decoration: none;
     position: relative;
     /* Para posicionar el ::after */
     overflow: hidden;
     /* Previene que el efecto se desborde */
 }

 /* Efecto de línea animada en hover */
 .menu ul li a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     /* Grosor de la línea */
     bottom: 0;
     left: 0;
     background-color: var(--color-primario);
     /* Color de la línea */
     transition: width 0.4s ease;
 }

 .menu ul li a:hover::after {
     width: 100%;
 }

 @media (min-width: 500px) {
     .menu ul li a {
         font-size: 3.5rem;
     }
 }

 .boton-menu {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     width: 6rem;
     height: 6rem;
     border: none;
     background-color: transparent;
     cursor: pointer;
     transition: all 0.3s ease;
     gap: 1.2rem;
     margin-right: 1%;
 }

 @media(min-width: 950px) {
     .boton-menu {
         width: 8rem;
         height: 8rem;
         gap: 1.6rem;
     }
 }

 .boton-menu .line {
     position: relative;
     width: 4rem;
     height: .3rem;
     background-color: var(--color-blanco);
     border-radius: 10px;
 }

 @media(min-width: 950px) {
     .boton-menu .line {
         position: relative;
         width: 6rem;
         height: .5rem;
     }
 }


 .boton-menu .line:nth-child(1) {
     top: 0;
     transform: rotate(0);
     transition: top 0.2s ease, transform 0, 4s ease;
 }

 .boton-menu .line:nth-child(2) {
     opacity: 1;
     visibility: visible;
     transition: all .1s ease;
 }

 .boton-menu .line:nth-child(3) {
     top: 0;
     transform: rotate(0);
     transition: top 0.5s ease, transform 0, 4s ease;
 }

 .boton-menu.active .line:nth-child(1) {
     top: 18px;
     transform: rotate(45deg);
 }


 .boton-menu.active .line:nth-child(2) {
     opacity: 0;
     visibility: hidden;
 }

 .boton-menu.active .line:nth-child(3) {
     top: -12px;
     transform: rotate(-45deg);
 }

 @media(min-width: 950px) {
     .boton-menu.active .line:nth-child(3) {
         top: -24px;
         transform: rotate(-45deg);
     }
 }

 .logo-header-extra img {
     filter: invert(1) brightness(0.5) !important;
 }

 .line-extra {
     background-color: var(--color-negro) !important;
 }

 /* Header */

 .contenedor-logo-menu {
     width: 100%;
     height: auto;
     display: flex;
     align-items: center;
     justify-content: end;
     flex-direction: row-reverse;
     padding: 4% 6%;
 }


 .logo-header {
     width: 8rem;
     margin-left: 2rem;
     fill: var(--color-cuarto) !important;
 }

 @media(max-width:400px) {
     .logo-header {
         width: 6rem;
         margin-left: 2rem;
     }
 }

 .header {
     width: 100%;
     height: 640px;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     display: grid;
     transition: 4s ease-in;
     position: relative;
     overflow: hidden;
 }


 @media(min-width: 470px) {
     .header {
         height: auto;
     }
 }


 .listado-grid {
     display: grid;
     grid-template-columns: repeat(3, auto 5rem);
     padding: 5% 0 10% 0;
 }

 @media(max-width: 949px) {
     .listado-grid {
         grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
         padding: 5% 0 8% 0;
     }
 }

 .contenedor-logo-menu,
 .contenedor-clientes-header {
     position: relative;
 }

 .header-bg {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-size: cover;
     background-position: center;
     transition: background-image 1s ease-in-out, transform 3.5s ease-in-out;
 }

 .cliente {
     display: grid;
     place-items: center;
     font-size: 2.6rem;
     font-family: var(--fuente-unboundedRegular);
     text-align: left;
     color: var(--color-blanco);
     opacity: .7;
     letter-spacing: .15rem;

 }

 @media(min-width: 420px) {
     .cliente {
         font-size: 3rem;
     }
 }

 @media(min-width: 1200px) {
     .cliente {
         font-size: 3.4rem;
     }
 }

 @media(min-width: 1423px) {
     .cliente {
         font-size: 4rem;
     }
 }


 .cliente:hover {
     color: var(--color-blanco) !important;
     cursor: pointer;
     opacity: 1.5;
 }

 .cliente.activo {
     color: var(--color-blanco);
     font-weight: bold;
     opacity: 1;
     transform: scale(1.1);
 }

 .spam-clientes {
     display: grid;
     place-items: center;
     color: var(--color-blanco);
     font-size: 6rem;
     opacity: .5;
 }

 @media(max-width: 949px) {
     .spam-clientes {
         display: none;
     }
 }

 .contenedor-header-secundario {
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     width: 100%;
     height: auto;
     min-height: 15rem;
 }

 @media(min-width: 500px) {
     .contenedor-header-secundario {
         min-height: 30rem;
     }
 }

 .contenedor-header-secundario-02 {
     background-color: var(--color-cuarto);
 }

 /* Primera Sección */
 .contenedor-ps {
     width: 100%;
     height: auto;
     min-height: 30rem;
     padding: 5% 0;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     background-attachment: fixed;
     display: flex;
     justify-content: space-evenly;
 }

 @media(max-width: 630px) {
     .contenedor-ps {
         flex-direction: column-reverse;
         gap: 5rem;
         padding: 10% 0;
     }
 }

 .video-ss {
     width: 80%;
     height: 30rem;
 }

 .contenedor-video-ps {
     width: 600px;
     display: grid;
     place-items: center;
 }

 @media(max-width: 630px) {
     .contenedor-video-ps {
         align-items: center;
         width: 100%;
     }
 }

 .contenedor-informacion-ps {
     width: 500px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 @media(max-width: 630px) {
     .contenedor-informacion-ps {
         width: 100%;
         text-align: center;
     }
 }


 .texto-01-ps {
     font-size: 2.8rem;
     color: var(--color-blanco);
     font-family: var(--fuente-ralewayLigth);
     line-height: 3.5rem;
 }

 @media(max-width: 420px) {
     .texto-01-ps {
         font-size: 2rem;
     }
 }

 .texto-02-ps {
     font-size: 1.4rem;
     color: var(--color-blanco);
     font-family: var(--fuente-poppinsSemiBold);
     letter-spacing: .15rem;

 }

 @media(max-width: 630px) {
     .texto-02-ps {
         padding: 0 1rem;

     }
 }

 /* Segunda Sección */

 .slider {
     width: 100%;
     height: auto;
     margin: auto;
     overflow: hidden;
     position: relative;
 }

 .slider .slide-track {
     display: flex;
     animation: scroll 60s linear infinite;
     width: calc(350px * 20);
     height: auto;
 }

 .slider .slide {
     width: 350px;
     flex-shrink: 0;
 }

 .slider .slide img {
     width: 100%;
     height: 250px;
     object-fit: cover;
 }

 @keyframes scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(calc(-290px * 9));
         /* La mitad de las imágenes */
     }
 }

 .slider2 {
     width: 100%;
     height: auto;
     margin: auto;
     overflow: hidden;
     position: relative;
 }

 .slider2 .slide-track2 {
     display: flex;
     animation: scrolling 70s linear infinite;
     width: calc(350px * 20);
     height: auto;
 }

 .slider2 .slide2 {
     width: 350px;
     height: 240px !important;
     flex-shrink: 0;
 }

 .slider2 .slide2 img {
     width: 100%;
     height: 250px;
     object-fit: cover;
 }

 @keyframes scrolling {
     0% {
         transform: translateX(calc(-290px * 9));
     }

     100% {
         transform: translateX(0);
         /* La mitad de las imágenes */
     }
 }

 .contenedor-grid-ss {
     overflow: hidden;
     /* Oculta el desbordamiento del carrusel */
     width: 100%;
     position: relative;
 }

 .carousel {
     display: flex;
     animation: scroll 20s linear infinite;
     /* Ajusta la duración según la velocidad deseada */
 }

 .carousel img {
     height: 150px;
     /* Ajusta la altura según tu diseño */
 }

 @media(min-width:550px) {
     .carousel img {
         flex-shrink: 0;
         /* Asegura que las imágenes no se encojan */
         width: auto;
         /* Ajusta si es necesario para que las imágenes mantengan su proporción */
         height: 280px;
         /* Ajusta la altura según tu diseño */
     }
 }

 .contenedor-grid-ss-contrario {
     overflow: hidden;
     /* Oculta el desbordamiento del carrusel */
     width: 100%;
     position: relative;
 }

 .carousel-contrario {
     display: flex;
     animation: slide-reverse 20s linear infinite;
     /* Ajusta la duración según la velocidad deseada */
 }

 .carousel-contrario img {
     flex-shrink: 0;
     /* Asegura que las imágenes no se encojan */
     width: auto;
     /* Ajusta si es necesario para que las imágenes mantengan su proporción */
     height: 150px;
     /* Ajusta la altura según tu diseño */
 }

 @media(min-width:550px) {

     .carousel-contrario img {
         flex-shrink: 0;
         /* Asegura que las imágenes no se encojan */
         width: auto;
         /* Ajusta si es necesario para que las imágenes mantengan su proporción */
         height: 280px;
         /* Ajusta la altura según tu diseño */
     }
 }

 @keyframes slide-reverse {
     0% {
         transform: translateX(-50%);
     }

     100% {
         transform: translateX(0);
     }
 }


 /* Tercera Sección */
 .contenedor-ts {
     display: grid;
     place-items: center;
     width: 100%;
     height: auto;
     padding: 2rem 0;
     background-color: var(--color-blanco);
 }

 .contenedor-texto-ts {
     text-align: left;
     padding: 0 1rem 0 2rem;
 }

 @media(min-width: 680px) {
     .contenedor-texto-ts {
         text-align: left;
     }
 }

 .contenedor-texto-ts h3 {
     font-family: var(--fuente-unboundedRegular);
     font-size: 2.2rem;
     color: var(--color-tercero);

 }

 @media(min-width: 680px) {
     .contenedor-texto-ts h3 {
         font-size: 2.7vw;
     }
 }



 /* Cuarta Sección */

 .contenedor-cs {
     background-color: var(--color-blanco);
 }

 .titulo-cs {
     font-size: 1.8rem;
     font-family: var(--fuente-poppinsSemiBold);
     color: var(--color-negro);
     text-align: center;
     padding: 0 1rem 0 1rem;
     letter-spacing: .15rem;
 }

 @media(min-width: 680px) {
     .titulo-cs {
         font-size: 1.2vw;
     }
 }


 .contenedor-informacion-cs {
     display: flex;
     justify-content: center;
     gap: 4rem;
     margin: 4rem 0 6rem 0;
 }

 @media(max-width: 730px) {
     .contenedor-informacion-cs {
         display: flex;
         flex-direction: column-reverse;
         gap: 1rem;
         margin: 0 0 2rem 0;
     }
 }

 .imagen-cs {
     width: auto;
     transition: 4s ease-in;
 }

 .imagen-cs img {
     width: 250px;
     height: auto;
 }

 @media(max-width: 730px) {
     .imagen-cs img {
         width: 100%;
         height: 40rem;
         object-fit: cover;
     }
 }

 @media(min-width: 730px) {
     .imagen-cs-2 img {
         display: none;
     }
 }

 #tema-imagen {
     transition: opacity 0.5s ease-in-out;
     opacity: 1;
 }


 .informacion-cs {
     width: 38rem;
     min-width: 20rem;
     height: 80%;
     min-height: 42rem;
     padding: 3rem 3rem;
     background-color: var(--color-tercero);
     margin-left: -9rem;
     margin-top: 12rem;
 }

 @media(max-width: 730px) {
     .informacion-cs {
         width: 100%;
         min-height: auto;
         margin-left: 0;
         margin-top: 0;
         padding: 2rem 3rem;
     }
 }

 .informacion-cs h3,
 .informacion-cs p {
     margin: 0;
 }

 .informacion-cs h3 {
     color: var(--color-blanco);
     font-family: var(--fuente-poppinsLight);
 }

 .informacion-cs p {
     color: var(--color-quinto);
     font-family: var(--fuente-poppinsSemiBold);
     font-size: 2.8rem;
 }

 .temas-cs {
     width: 35%;
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-top: 4rem;
 }

 @media(max-width: 730px) {
     .temas-cs {
         width: 100%;
     }
 }

 .tema a {
     text-decoration: none;
     color: black;
 }

 .tema h2 {
     margin: 0;
     font-family: var(--fuente-poppinsSemiBold);
     color: var(--color-tercero);
     font-size: 3.6rem;
 }

 @media(min-width: 731px) {
     .tema h2 {
         font-size: 2.6rem;
     }
 }

 @media(min-width: 840px) {
     .tema h2 {
         font-size: 3.4rem;
     }
 }

 .tema h2:hover {
     cursor: pointer;
     transform: scale(1.05);
     padding-left: 2rem;
     transition: .5s ease-in-out;
 }

 .parafo-creative {
     width: 100%;
     color: var(--color-quinto);
     font-family: var(--fuente-poppinsSemiBold);
     font-size: 1.8rem;
     margin-bottom: -1rem;
 }

 .parrafo_digital {
     color: var(--color-aqua);
     font-family: var(--fuente-poppinsSemiBold);
     font-size: 1.8rem;
     margin-bottom: -1rem;
 }

 .parrafo-producciones {
     color: var(--color-morado);
     font-family: var(--fuente-poppinsSemiBold);
     font-size: 1.8rem;
     margin-bottom: -1rem;
 }

 .parrafo-market {
     color: var(--color-primario);
     font-family: var(--fuente-poppinsSemiBold);
     font-size: 1.8rem;
     margin-bottom: -1rem;
 }


 /* Quinta Sección */

 .lb-nav {
     background-color: transparent;
 }

 .contenedor-seccion-clientes {
     width: 100%;
     height: auto;
     padding: 6rem 0;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
 }

 .titulo-seccion-clientes {
     font-size: 1.7rem;
     font-family: var(--fuente-poppinsMedium);
     color: var(--color-blanco);
     text-align: center;
     margin-bottom: 6rem;
     padding: 0 1rem 0 1rem;
     letter-spacing: .15rem;
 }

 @media(min-width: 680px) {
     .titulo-seccion-clientes {
         font-size: 1.3vw;
     }
 }

 .galeria-imagenes-clientes {
     display: grid;
     place-items: center;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 6rem 0;
 }

 .galeria-imagenes-clientes li {
     width: 45%;
     height: auto;
 }

 /* Sección Footer */

 .contenedor-footer {
     background-color: var(--color-cuarto);
     padding-bottom: 4rem;
 }

 .contenedor-footer-ps {
     display: flex;
     align-items: center;
     flex-direction: column-reverse;
 }

 @media(min-width: 680px) {
     .contenedor-footer-ps {
         display: flex;
         align-items: center;
         justify-content: space-around;
         flex-direction: row;
     }
 }

 .contenedor-texto-footer-ps {
     text-align: center;
 }

 .contenedor-texto-footer-ps h2 {
     color: var(--color-quinto);
     font-size: 1.4rem;
     font-family: var(--fuente-poppinsRegular);
     margin-bottom: 2rem;
     margin-top: 4rem;
     letter-spacing: .15rem;
 }

 @media(min-width: 880px) {
     .contenedor-texto-footer-ps h2 {
         font-size: 1.3rem;
     }
 }


 .contenedor-texto-footer-ps a h3 {
     color: var(--color-sexto);
     font-family: var(--fuente-unboundedLigth);
     font-size: 3rem;
     margin-bottom: 0;
     margin-top: -2.7rem;
 }

 @media(min-width: 880px) {
     .contenedor-texto-footer-ps a h3 {
         font-size: 3.5rem;
     }
 }


 .contenedor-texto-footer-ps a h3:hover {
     color: var(--color-blanco);
     transition: .3s ease-in-out;
 }

 .imagen-slogan-footer {
     width: 70%;
     height: auto;
     margin-top: 2rem;
     margin-bottom: 4rem;
 }

 @media(min-width: 680px) {
     .imagen-slogan-footer {
         width: 40%;
         padding-top: 4rem;
     }
 }

 @media(min-width: 880px) {
     .imagen-slogan-footer {
         max-width: 30rem;
     }
 }

 .contenedor-direccion p {
     text-align: center;
     color: var(--color-blanco);
     font-family: var(--fuente-ralewayLigth);
     font-size: 1.6rem;
 }

 .contenedor-redes-sociales {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .contenedor-redes-sociales img {
     margin-top: 2rem;
     width: 7rem;
     padding: 1.5rem;
 }

 @media(min-width: 820px) {
     .contenedor-redes-sociales img {
         margin-top: 0;
     }
 }


 @media(min-width: 820px) {
     .contenedor-footer-ss {
         display: flex;
         align-items: center;
         justify-content: space-evenly;
     }
 }

 .contenedor-redes-sociales img:hover {
     transform: scale(1.3);
     transition: .3s ease-in-out;
     filter: drop-shadow(0 0 40px #fff);
 }


 /* Seccion Proyectos*/

 .listado-grid-proyectos {
     display: grid;
 }

 @media(min-width: 768px) {
     .listado-grid-proyectos {
         grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
     }
 }

 @media(min-width: 1366px) {
     .listado-grid-proyectos {
         grid-template-columns: repeat(auto-fit, minmax(490px, 1fr));
     }
 }

 .card-proyecto {
     background-image: linear-gradient(to bottom, transparent 0, rgb(0 0 0 / .9));
     position: relative;
     overflow: hidden;
 }

 @media(min-width: 1200px) {
     .card-proyecto {
         background-image: linear-gradient(to bottom, transparent 0, rgb(0 0 0 / .0));
     }
 }

 .card-proyecto:hover img {
     transform: scale(1.1);

 }

 .card-proyecto img {
     width: 100%;
     display: block;
     position: relative;
     z-index: -1;
     transition: transform 700ms ease;
 }

 .card-proyecto .contenido-card-proyectos {
     position: absolute;
     bottom: 0;
     left: 0;
 }

 .contenido-card-proyectos {
     opacity: 1;
     padding: 20% 10%;
 }

 @media(min-width: 1200px) {
     .contenido-card-proyectos {
         opacity: 0;
         transform: translateY(20px);
         transition: opacity 0.3s ease, transform 0.3s ease;
     }

 }


 @media(min-width: 1200px) {
     .card-proyecto:hover .contenido-card-proyectos {
         opacity: 1;
         transform: translateY(0);
         background-image: linear-gradient(to bottom, transparent 0, rgb(0 0 0 / .9));
     }
 }

 .card-proyecto .contenido-card-proyectos h3 {
     color: var(--color-blanco);
     font-family: var(--fuente-unboundedMedium);
     font-size: clamp(1.6rem, 5vw, 2.2rem);
     margin: 0;
 }

 .card-proyecto .contenido-card-proyectos p {
     color: var(--color-blanco);
     font-size: 1.4rem;
     margin: 0;
 }

 @media(min-width: 990px) {
     .card-proyecto .contenido-card-proyectos p {
         font-size: 1.8rem;
     }
 }


 /* Seccion Single Proyectos*/

 .navegacion-proyectos {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: 3rem;
     margin-bottom: 3rem;
     padding: 10px;
 }

 .btn-proyecto-anterior,
 .btn-proyecto-siguiente {
     display: inline-block;
     font-family: var(--fuente-unboundedMedium);
     padding: 10px 15px;
     font-size: 16px;
     color: var(--color-negro);
     text-decoration: none;
     border-radius: 5px;
     transition: background-color 0.3s ease;
 }

 .btn-proyecto-anterior:hover,
 .btn-proyecto-siguiente:hover {
     color: var(--color-primario);
 }

 .btn-proyecto-siguiente {
     text-align: right;
 }

 .btn-proyecto-anterior {
     text-align: left;
 }

 .contenedor-proyectos {}

 .contenedor-imagen-primera-seccion-proyectos img {
     width: 100%;
     height: auto;
 }

 .contenedor-header-proyectos {
     padding-top: 5%;
     padding-bottom: 5%;
 }

 .contenedor-header-proyectos-info {
     padding: 0 10%;
 }

 .contenedor-header-proyectos-info h1 {
     font-size: clamp(1.6rem, 5vw, 2.2rem);
 }

 .contenedor-header-proyectos-info h4 {
     font-size: clamp(1.6rem, 5vw, 2.2rem);
 }

 .contenedor-header-proyectos-info p {
     font-size: clamp(1.4rem, 5vw, 1.8rem);
 }

 .texto-proyectos {}

 .contenedor-galeria-proyectos {}

 .contenedor-galeria-proyectos img {
     width: 100%;
     height: auto;
 }