
*{
      box-sizing: border-box;
      font-family: "Brother", Arial, sans-serif;
}

/* Estilo base para la barra de desplazamiento */
::-webkit-scrollbar {
  width: 4px; /* Ancho de la barra de desplazamiento */
  background-color: var(--negro); /* Fondo transparente */
}

/* Estilo para el riel de la barra de desplazamiento */
::-webkit-scrollbar-track {
  background-color: #c6a8573f;
  /* Fondo transparente */
}

/* Estilo para el mango de la barra de desplazamiento */
::-webkit-scrollbar-thumb {
  position: relative;
  background-color: var(--amarillo); /* Color naranja */
  border-radius: 4px; /* Borde redondeado */
}

/* Estilo para la barra de desplazamiento cuando está activa (se hace scroll) */
::-webkit-scrollbar-thumb:hover {
  background-color: var(--naranja); /* Color más oscuro al hacer hover */

}
html{
  scroll-behavior: smooth;
}


@keyframes entradaelementos {
	0% {
		opacity: 0;
    scale: 0.5;
	}

	100% {
		opacity: 1;
    scale: 1;
	}
}




/*tipografia*/
@font-face {
  font-family: brother;
  src: url(../recursos/Tipografia/brother1816-TTF/Brother1816-LightItalic.ttf) format('truetype');
  font-style: italic;
  font-display: swap;
  font-weight: 200;
}
@font-face {
  font-family: brother;
  src: url(/recursos/Tipografia/brother1816-TTF/Brother1816-Regular.ttf) format('truetype');
  font-style: normal;
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: brother;
  src: url(/recursos/Tipografia/brother1816-TTF/Brother1816-Bold.ttf) format('truetype');
  font-style: normal;
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: brother;
  src: url(/recursos/Tipografia/brother1816-TTF/Brother1816-Black.ttf) format('truetype');
  font-style: normal;
  font-display: swap;
  font-weight: 900;
}
@font-face {
  font-family: brother;
  src: url(/recursos/Tipografia/brother1816-TTF/Brother1816-BlackItalic.ttf) format('truetype');
  font-style: italic;
  font-display: swap;
  font-weight: 900;
}

/*texto*/
h1 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Brother", Arial, sans-serif;
  font-size: 3em;
  font-style: italic;
  font-weight: 800;
  line-height: 40px;
}

h2 {
  font-family: "Brother", Arial, sans-serif;
  font-size: var(--h2);
  text-transform: capitalize;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 800;
  text-decoration: none;
}

h3 {
  font-family: "Brother", Arial, sans-serif;
  font-size: var(--h3);
  margin-top: 20px;
  margin-bottom: 10px;
  font-style: italic;
  font-weight: 800;
  line-height: 20px;
  font-size: 1.5em;
  text-decoration: none;
  
}

p {
  font-family: "Brother", Arial, sans-serif;
  font-size: var(--p);
  margin-bottom: 10px;
  font-weight: 600;
}

a{
  text-decoration: none;
}
/*variables*/
:root {
  --h1: 3em;
  --h2: 2em;
  --h3: 1.5em;
  --p: 1em;
  --negro: #1d1d1d;
  --blanco: #eadec4;
  --amarillo: #c6a857;
  --naranja: #ed8e6a;
  --azul: #a7d5f3;
  --trasparente: transparent;
  --font-family: "Brother", Arial;
}

body{
  background-color: #123e41;
  display: block;
  margin: 0;
}

main{
  margin: auto;
  width: 100%;
  position: relative;
    
}

section{
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  margin: auto;
  box-shadow: 0px 0px 51px 0px #00000041;
}



/*navegador*/
nav{
  background-color: var(--negro);
  z-index: 999;
  width: 100%;
  height: 60px;
  font-family: var(--font-family);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: inline-block;
  position: sticky;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}
.navegador{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  border-bottom: 3px solid #c6a85760;
  height: 60px;

}
.volver{
  cursor: pointer;
  height: 60px;
  display: flex;
  align-items: center;
}
.volver svg{
  height: 20px;
  width: 20px;
  fill: var(--blanco);
  transition: all 0.2s;
}
.volver svg:hover{
  fill: var(--amarillo);
}
.icono svg {
  width: 30px;
  height: 30px;
  margin-top: 20px;
  fill: var(--blanco);
  transition: all 0.2s;
}

.icono svg:hover{
  fill: var(--naranja);

}

.navegador p{
  font-family: var(--h2);
  color: var(--blanco);
  font-style: italic;
}

/***********************main proyecto**********************************************/

/**/

.contenedor {
  background-color: #fff;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  font-family: Montserrat, sans-serif;
  display: flex;
  position: relative;
  top: 0;
  left: auto;
  right: auto;
}

.titulo {
  color: #000;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 2.5em;
  font-weight: 800;
  line-height: 1em;
  font-style: normal;
}

.titulo.amarillo {
  color: #e3bd33;
}

.titulo.blanco {
  color: #fff;
}

.subtitulo {
  color: #000;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 2em;
  font-weight: 600;
  line-height: .8em;
}

.subtitulo.blanco {
  color: #fff;
  padding-top: 20px;
}

.parrafo {
  color: #000;
  margin-top: .5em;
  font-family: Montserrat, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.2em;
}

.parrafo.blanco {
  color: #fff;
}
.parrafo.blanco .span-parrafo{
  color: #fff;
}

.parrafo.logotipo {
  text-align: left;
  padding-left: 28px;
  font-weight: 900;
}

.span-parrafo {
  color: #000000;
  -webkit-text-stroke-width: 0px;
  font-family: Montserrat, sans-serif;
  font-weight: 900;
}

.seccion {
  background-color: #b93a32;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 40px 40px 10px;
  display: flex;
}

.seccion.portada {
  background-color: #e3bd33;
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.seccion.segunda {
  height: 700px;
  padding: 0;
  overflow: hidden;
}

.seccion.tercera {
  background-color: #00656b;
  margin-top: -90px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
  z-index: 1;
}

.seccion.tercera-2 {
  background-color: #fff;
  margin-bottom: -13px;
  padding-top: 0;
  padding-bottom: 0;
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
  z-index: 2;
}

.seccion.cuarta {
  background-color: var(--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 0;
  overflow: hidden;
}

.seccion.quinta {
  background-color: #fff;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 0;
  padding-bottom: 40px;
  overflow: hidden;
}

.seccion.sexta {
  background-color: #fff;
  border-top: 10px solid #b93a32;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-top: 20px;
}

.seccion.septima {
  background-color: #fff;
  border-bottom: 50px solid #00656b;
}

.texto-portada {
  width: 60%;
}

.botella-portada {
  height: 300px;
  margin-right: -77px;
  position: relative;
}

.logotipo-portada {
  height: 300px;
}

.imagen-textura-mahou {
  filter: drop-shadow(-3px 3px 14px #000);
  width: 33%;
  height: auto;
}

.fondo-textura-mahou {
  z-index: 0;
  width: 100%;
  height: auto;
  margin-bottom: -542px;
  position: relative;
}

.botellas-mahou {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  width: 100%;
}

.icono-deco {
  height: 500px;
}

.img-tercera-seccion {
  height: 500px;
  margin-top: -123px;
  margin-right: -75px;
  padding-top: 0;
  padding-bottom: 0px;
  padding-left: 0;
  position: relative;
}

.mudando-piel {
  margin-top: 10px;
  background-color: #b93a32;
  justify-content: center;
  align-items: flex-start;
  width: 108%;
  padding-right: 0;
  display: flex;
}

.contenedor-piel {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.botellas-tumbadas {
  height: 300px;
  margin-left: -47px;
}

.chapas-linea {
  width: auto;
  max-width: none;
  height: 100%;
  margin-right: -56px;
}

.contenedor-colores {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.chapas-separador {
  width: 130%;
  height: 70px;
  margin-left: -170px;
  margin-right: auto;
  display: flex;
  position: relative;
}

.colores {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  -webkit-text-stroke-width: 2px;
  border-top-color: #945d5d;
  border-bottom-style: none;
  border-bottom-color: #945d5d;
  border-right-style: none;
  border-right-color: #945d5d;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  height: auto;
  margin-top: 13px;
  display: flex;
}

.color-card {
  border: 3px solid #000;
  border-radius: 8px;
  width: 400px;
  height: 200px;
  display: flex;
  box-shadow: 6px 3px 11px rgba(0, 0, 0, .2);
}

.color-card.rojo {
  border-color: #b93a32;
}

.color-card.amarillo {
  border-color: #e3bd33;
}

.color-card.azul {
  border-color: #00656b;
}

.color-card.verde {
  border-color: #d2e7ca;
}

.color {
  background-color: #698c79;
  width: 200px;
  height: 100%;
}

.color.rojo {
  background-color: #b93a32;
}

.color.amarillo {
  background-color: #e3bd33;
}

.color.azul {
  background-color: #00656b;
}

.color.verde {
  background-color: #d2e7ca;
  border-top: 1px solid #d2e7ca;
}

.cuerpo-color {
  padding: 15px 20px 20px 10px;
}

.span-parrafo-color {
  color: #000;
  -webkit-text-stroke-width: 0px;
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.texto-color {
  color: #000;
  -webkit-text-stroke-width: 0px;
  border-top: 3px solid #000;
  width: 300px;
  margin-top: 11px;
  padding-top: 0;
  font-weight: 400;
}

.texto-color.rojo {
  border-top-color: #b93a32;
}

.texto-color.amarillo {
  border-top-color: #e3bd33;
}

.texto-color.azul {
  border-top-color: #00656b;
}

.texto-color.verde {
  border-top-color: #d2e7ca;
}

.contenedor-antes-despues {
  width: 40%;
  padding-left: 20px;
}

.logotipo-antes {
  width: 100%;
  height: auto;
}

.logotipo-despues {
  width: 100%;
  height: auto;
  padding-left: 20px;
}

.image-2 {
  width: 100%;
}

.agradecimientos {
  color: #00656b;
  background-color: #e3bd33;
  flex: 1;
  width: 100%;
  height: 300px;
  font-weight: 900;
}

.t-agradecimientos {
  text-align: center;
  letter-spacing: 10px;
  font-weight: 900;
}

@media screen and (max-width: 991px) {
  .contenedor-antes-despues {
    width: 100%;
  }
  .seccion.sexta {
  display: flex;
  flex-direction: column;
  
  }
  .seccion.segunda {
    padding-bottom: 150px;
  }

  .seccion.tercera {
    margin-top: -230px;
    padding-top: 20px;
    
  }

  .seccion.tercera-2 {
    margin-bottom: -2px;
  }

  .texto-portada {
    width: 100%;
  }

  .botella-portada, .logotipo-portada {
    height: 200px;
  }

  .icono-deco {
    display: none;
    position: relative;
  }

  .mudando-piel {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 120%;
  }

  .color.rojo {
    width: 100px;
  }
}

@media screen and (max-width: 767px) {


  .seccion.portada {
    flex-flow: column;
  }

  .seccion.segunda {
    padding-bottom: 237px;
  }

  .seccion.tercera {
    margin-top: -380px;
  }

  .seccion.tercera-2, .seccion.sexta {
    flex-flow: column;
    padding-top: 10px;
  }

  .seccion.septima {
    padding-left: 10px;
    padding-right: 10px;
  }

  .texto-portada {
    width: 100%;
    padding-bottom: 28px;
  }

  .botella-portada {
    margin-right: -145px;
  }

  .logotipo-portada {
    margin-top: -210px;
    margin-left: -121px;
  }

  .botellas-mahou {
    margin-bottom: 70px;
  }

  .img-tercera-seccion {
    margin-top: -68px;
    margin-bottom: -14px;
    padding-bottom: 0;
  }

  .contenedor-piel {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .botellas-tumbadas {
    height: 200px;
    margin-top: -37px;
    margin-left: -300px;
  }

  .chapas-separador {
    display: flex;
  }

  .contenedor-antes-despues {
    width: 100%;
  }

  .t-agradecimientos {
    font-size: 30px;
  }
}

@media screen and (max-width: 479px) {
  .titulo{
    font-size: 2em;
  }
  .titulo.blanco {
    font-size: 2em;
  }

  .seccion.portada {
    flex-flow: column-reverse;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .seccion.segunda {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 215px;
 
  }

  .seccion.tercera {
    margin-top: -520px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .seccion.tercera-2 {
    padding-top: 8px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .seccion.cuarta, .seccion.quinta, .seccion.sexta {
    padding-left: 10px;
    padding-right: 10px;
  }

  .seccion.septima {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .botella-portada {
    display: none;
  }

  .logotipo-portada {
    margin-top: 0;
    margin-left: 0;
    position: static;
  }

  .botellas-mahou {
    margin-bottom: 254px;
  }

  .img-tercera-seccion {
    display: none;
  }

  .botellas-tumbadas {
    margin-left: -26px;
  }

  .color-card.rojo, .color-card.amarillo, .color-card.azul, .color-card.verde {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    width: 300px;
    height: 250px;
  }

  .color.rojo, .color.amarillo, .color.azul, .color.verde {
    width: 100%;
    height: 50px;
  }

  .cuerpo-color {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    display: block;
  }

  .texto-color.rojo, .texto-color.amarillo, .texto-color.azul, .texto-color.verde {
    width: 100%;
  }

  .contenedor-antes-despues {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .logotipo-despues {
    padding-left: 0;
  }
}












/**/



/***********************main proyecto**********************************************/

/*FOOTER*/
.seccion.contacto {
  z-index: 0;
  height: auto;
  max-width: none;
  background-color: var(--negro);
  flex-flow: column;
  margin-top: 0;
  margin-left: auto;
  padding: 71px 20px 0;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 20px 40px -20px rgba(255, 255, 255, .47);
}

.linea-amarilla-contacto {
  width: 400vw;
  height: 100px;
  background-image: url("/recursos/Vectores/onas-amarillas.svg");
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: auto;
  margin-top: -21px;
  margin-left: auto;
  margin-right: -1000px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  z-index: 9999;
}

.linea-azul-contacto {
  width: 400vw;
  height: 100px;
  background-image: url("/recursos/Vectores/ondas-azules.svg");
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: auto;
  margin-top: -20px;
  margin-left: auto;
  margin-right: -1000px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.linea-naranja-contacto {
  width: 400vw;
  height: 100px;
  background-image: url("/recursos/Vectores/ondas-naranjas.svg");
  background-position: 50%;
  background-repeat: repeat-x;
  background-size: auto;
  margin-top: -20px;
  margin-left: auto;
  margin-right: -1000px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.contenedor-contacto {
  height: auto;
  max-width: 1200px;
  justify-content: center;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: flex;
}

.contactame {
  width: 100%;
  max-width: 1200px;
  border-radius: 0;
  align-self: flex-start;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.heading.seccion-contacto {
  color: var(--blanco);
  margin-top: 0;
  margin-bottom: 10px;
}

.p-contacto {
  max-width: 1200px;
  color: var(--blanco);
  font-size: var(--p);
  margin: 0 auto 40px;
  padding-right: 50px;
  font-weight: 400;
  line-height: 1.2em;
}

.text-span-9 {
  font-weight: 600;
}

.image-5 {
  width: 20px;
  margin-right: 8px;
}

.link-mail {
  width: 400px;
  color: var(--blanco);
  justify-content: flex-start;
  align-items: center;
  line-height: 30px;
  display: flex;
}

.link-telefono {
  width: 400px;
  color: var(--blanco);
  justify-content: flex-start;
  align-items: center;
  line-height: 30px;
  display: flex;
}

.feedback {
  width: 100%;
  max-width: 1200px;
  border-radius: 0;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.form-block {
  background-color: var(--blanco);
  box-shadow: -13px 11px 30px -20px var(--blanco);
  border-radius: 13px;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.form {
  z-index: 1;
  background-color: var(--trasparente);
  
  border-radius: 6px;
  padding: 10px 31px;
  position: relative;
  overflow: visible;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

.field-label {
  text-align: center;
  margin-bottom: 0;
  line-height: 40px;
}

.textarea {
  min-height: 75px;
  max-width: 100%;
  min-width: 100%;
  margin-bottom: 25px;
  padding: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.submit-button {
  width: 150px;
  height: 40px;
  border: 2px solid var(--negro);
  background-color: var(--negro);
  color: var(--blanco);
  border-radius: 20px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  font-weight: 800;
  line-height: 10px;
  transition: all .3s cubic-bezier(.645, .045, .355, 1);
  display: block;
  position: static;
  box-shadow: 8px 3px 6px -1px rgba(0, 0, 0, .2);
}

.submit-button:hover {
  background-color: var(--trasparente);
  box-shadow: none;
  color: var(--negro);
  border-style: solid;
}

.text-block-10, .text-block-9 {
  color: var(--negro);
  line-height: 20px;
  font-weight: 600;
}

.success-message {
  height: 100%;
  background-color: #a2dda4;
  margin-top: auto;
  margin-bottom: auto;
  padding: 10px;
}

.error-message {
  background-color: #e9afaf;
  padding: 10px;
}

.icono-redes {
  display: block;
  height: 20px;
  opacity: 0.8;
  transition: all ease .2s;
}

.icono-redes:hover{
  opacity: 1;
}

.contenedor-redes-autoria {
  z-index: 1;
  max-width: 1200px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: start;
  justify-content: flex-start;
  align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  padding-top: 42px;
  display: grid;
  position: relative;
}

.redes {
  z-index: 1;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.autoria {
  z-index: 1;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: end;
  align-items: center;
  display: flex;
  position: relative;
  color: var(--blanco);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 200;
  line-height: 20px;
}

.derechos {
  z-index: -1;
  width: auto;
  color: var(--blanco);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
  font-size: 10px;
  font-style: normal;
  font-weight: 200;
  line-height: 10px;
  position: relative;
  top: -10px;

}

.enlace-contacto{
  color: var(--blanco);
}












/*estatica*/
.estatica-fondo-oscuro {
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: .45;
  mix-blend-mode: overlay;
  background-image: url("/recursos/imagenes/textura-ruido.webp");
  background-position: 50%;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
  margin-right: 0;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
} 
.estatica-fondo-claro {
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 40%;
  mix-blend-mode: soft-light;
  background-image: url("/recursos/imagenes/textura-ruido.webp");
  background-position: 20%;
  background-repeat: repeat;
  background-size: auto; /* Ajusta el ancho al 100% del contenedor y permite la repetición vertical */
  background-attachment: scroll;
  margin-right: 0;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0;
}





/*********ESTILOS RESPONSIVOS*********/
/*nav movil*/
@media screen and (max-width: 890px) {
  .contenedor-contacto {
    margin-top: 28px;
  }

  

}

/*1*/
@media screen and (max-width: 1200px){

}

/*2*/
@media screen and (max-width: 820px){
    .proyecto{
      width: 400px;
      margin: auto;
    }

    h1{
      font-size: 2.5em;
    }
    h3{
      font-size: 1.3em;
    }

  .p-contacto{
    padding: 0;
    margin: 0 auto 20px;
  }
  .heading.seccion-contacto {
    font-size: 2.5em;
  }
  .feedback {
    margin-bottom: 14px;
  }

.contactame {
    margin-bottom: 14px;
  }

  .contenedor-contacto {
    height: auto;
    flex-flow: column;
    margin-top: -2px;
  }


  
}

/*3*/
@media screen and (max-width: 430px){
  .portada-proyecto img{
    height: 200px;

  }
    .proyecto{
      width: 300px;
      height: 370px;
    }

    .derechos{
      margin-top: 20px;
    }

  .rrss-container{
    flex-direction: column;
    align-items: flex-end;
    padding-right: 20px;
  }

}

/*4*/
@media screen and (max-width: 320px){
    .redes {
      grid-column-gap: 40px;
    }
    .derechos {
    margin-top: 10px;
}

    .contenedor-redes-autoria {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    }

}

