@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

:root {
  --bg-dark: #090909;
  --bg-dark-body: #1b1b1b;
  --bg-light: #ffffff;

  /*grande */
  --font-large: 'Josefin Sans', sans-serif;
  /*media */
  --font-medium: 'Urbanist', sans-serif;
  /*chica */
  --font-small: 'Bitter', serif;

  /* color p */
  --color-p: #c2c9d4;
}


body {
  background-color: var(--bg-dark-body);
  color: var(--bg-light);
}

body.body--no-scroll {
  overflow: hidden;
}

/* Scroll bar */
body::-webkit-scrollbar {
  width: 8px;
  height: 21px !important;
}

body::-webkit-scrollbar-track {
  background: none;
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
  background-color: #f6f6f6;
  /* Color de la barra de desplazamiento */
  border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* Color cuando se pasa el mouse por encima */
}

/* ---------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-large);
  color: var(--bg-light);
}

p,
a {
  font-family: var(--font-medium);
  font-size: 1.10rem;
  color: var(--color-p);
}

/* Estilo barra de progreso */
#progressBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 3px;
  background-color: #ffffff;
  z-index: 402;
  /* diferente al map de project que tiene 400 por defecto, y el nav fixed tiene 401*/
}


/* --------------------------- */

.nav__principal.fixed {
  position: fixed !important;
  background-color: var(--bg-dark) !important;
  color: var(--bg-light);
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
}

.navbar.navbar-expand-lg.nav__principal {
  background-color: transparent;
  height: 65px;
  left: 0;
  max-width: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

/* Estilo para nav != del home */
.navbar.navbar-expand-lg.navNoHome {
  position: fixed;
  width: 100%;
  background-color: var(--bg-dark);
  z-index: 10;
  height: 75px;
  /* uso este valor ya que el mapa de project pasa por encima del nav */
}

.navbar-nav .nav-link {
  color: #FFF;
}

.nav-link {
  font-size: 1.1rem;
}

.nav__principal {
  /* box-shadow: 0 5px 14px rgba(37, 37, 37, 0.1); Sombra inferior marcada */
  box-shadow: 0 0px 2px rgba(100, 100, 100, 0.1);
  ;
  background-color: var(--bg-dark);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

#navbarNav {
  justify-content: center;
}

#navbarNav ul {
  gap: 15px;
}

/* Menu hamburguesa */
.navbar-toggle {
  background: none;
  border: none;
  font-size: 35px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.navbar-toggle .line {
  background-color: #fff;
  width: 0.9em;
  height: 2.5px;
}

.navbar-toggle .line+.line {
  margin-top: 0.21875em;
}

.navbar-toggle .line:nth-child(2) {
  margin-left: auto;
  width: 0.775em;
}

.nav-item .nav-link.nav-panel {
  color: #fff700;
}

.nav-item .nav-link.nav-panel:hover {
  color: #ffee00d8;
}

.nav-item .nav-link.btn-logout {
  color: #fff;
  background-color: #dc3545;
  /* Color de fondo rojo */
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-item .nav-link.btn-logout:hover {
  background-color: #c82333;
}

.aside {
  position: fixed;
  width: 100%;
  height: 100dvh;
  padding-top: 1rem;
  padding-bottom: 5rem;
  gap: 1.375rem 0;
  background-color: #1a1a1a;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 9;
  transform: translateX(100%);
  /* arranca escondido para poder animar hacia a la izq */
}

.aside.aside--open {
  display: flex;
  z-index: 10;
  flex-direction: column;
  animation: slideIn 0.5s ease forwards;
}

.aside.aside--close {
  display: flex;
  z-index: 10;
  flex-direction: column;
  animation: slideOut 1.3s ease forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
    display: none;
  }
}


.aside-sitemap {
  width: 80%;
  padding-left: max(20%, 2rem);
  margin-top: 5vh;
}

.aside-sitemap ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding-left: 0;
}

.aside-sitemap__title {
  font-size: 1.4rem;
  color: rgb(236 236 236);
  font-weight: bold;
  border-bottom: 1px solid #fff;
  margin-top: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  padding-right: 3.8em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
}

.aside-sitemap ul li a {
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

.aside-sitemap ul div a {
  font-size: 1.5rem;
}

.aside--open .aside-sitemap__title,
.aside--open .aside-sitemap .social-medias.contact__social-medias div {
  animation: aparecerDerecha 1s ease-in-out forwards;
}

.aside--open .aside-sitemap ul li a {
  animation: aparecerDerecha 1.2s ease-in-out forwards;
}

@keyframes aparecerDerecha {
  from {
    transform: translateX(250px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.aside--close .aside-sitemap__title,
.aside--close .aside-sitemap ul li a {
  animation: desaparecerDerecha 1.3s ease-out forwards;
}

@keyframes desaparecerDerecha {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(250px);
    opacity: 0;
  }
}

.aside__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.aside__menu a img {
  display: block;
  width: 33px;
  height: 33px;
}

.aside__close-button {
  border: none;
  background: transparent;
}

.aside-sitemap__link {
  display: block;
  font-family: var(--font-large);
  text-decoration: none;
}


/* ------------------------- */

.ul-principal li {
  position: relative;
}

.col-sm.home {
  margin-top: 40px;
}

.ul-principal li::after {
  content: "";
  position: absolute;
  width: 0;
  /* Inicialmente ancho 0 */
  height: 1.5px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

/* Linea al hacer hover */
.ul-principal li:hover::after {
  width: 100%;
  transform: scaleX(0.9);
}



/* ------------------------- */
.navbar-brand {
  margin-right: 0px;
}

.navbar-brand img {
  width: 33px;
  height: 33px;
  margin: 0px 10px;
}

.navbar-brand .img-logo-derecha {
  width: 100px;
}


/* Botono back to top */
#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  z-index: 99;
  padding: 7px;
  border-radius: 5px;
  border: none;
  outline: none;
  background-color: white;
  cursor: pointer;
}

#backToTopBtn svg {
  width: 20px;
  height: 25px;
}

#backToTopBtn svg path {
  fill: black;
}

#backToTopBtn:hover {
  background-color: rgb(236, 236, 236);
}


/* ----------------------------- */
/* Footer */
.contenedor-footer img {
  height: 45px;
  margin: 0 auto 45px;
}

footer {
  color: rgb(255 255 255 / 50%);
  padding-left: 1.5rem;
}

.contenedor-footer {
  width: 100%;
  display: flex;
  flex-direction: column;

}


footer.top {
  /* display: grid; */
  display: flex;
  flex-direction: column;
  justify-content: center;

  border-bottom: 2px solid rgb(255 255 255 / 20%);
  background-color: #000000;
  padding-bottom: 20px;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

footer.top .links {
  display: grid;
  /* grid-template-columns: repeat(1, 250px); */
  gap: 30px;
  margin-bottom: 30px;
}

.links-column {
  display: grid;
  gap: 10px;
  text-align: left;
}

.links-column a {
  cursor: pointer;
  text-decoration: none;
  color: rgb(255 255 255 / 50%);
  transition: color 0.3s ease;
  width: max-content;
  font-size: 1rem;
}

.links-column a:hover {
  color: white;
}

.links-column h2 {
  font-size: 1.1rem;
  font-weight: bold;
}

footer h2 {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgb(255 255 255 / 96%);
}

footer p {
  margin: 0;
}

.legal>a {
  margin: 0 0 0 4px;
}

.legal,
.copyright {
  font-size: 12px;
}

.legal>span {
  margin-right: 10px;
}

footer.top .socials {
  position: relative;
  bottom: -10px;
  translate: -50% 0;
  display: flex;
  align-items: center;
  gap: 55px;
  height: 56px;
  margin: auto;
}

footer.top .socials>a {
  font-size: 22px;
}

footer .socials a {
  text-decoration: none;
  color: white;
  cursor: pointer;
}

.socials-column :is(h2, p) {
  display: none;
}



/* Carousel */
#carouselVideoExample {
  /* height: 100dvh; */
}

.carousel-indicators.container-botones {
  justify-content: space-between;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 5%;
  bottom: 10px;
  width: 92%;
}

.contenedor-btn-carousel {
  display: flex;
  margin-left: 10px;
  gap: 30px;
}

.carousel-indicators button.active {
  background: white !important;
  opacity: 1 !important;
}

.carousel-control-prev,
.carousel-control-next {
  display: none;
}

.carousel-item {
  height: 100dvh;
}

.carousel-caption {
  position: absolute;
  bottom: 3.25rem;
  left: 5%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: left;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  animation: fadeInCaption 1s ease-in-out forwards;
}

@keyframes fadeInCaption {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.video__toggle {
  border-radius: 100%;
  width: 20px;
  height: 20px;
  padding: 20px;
  background-color: transparent;
  border: solid 0.1px white;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  margin-right: 10px;
}

.video__toggle:hover {
  background-color: white;
}

.video__toggle i {
  transition: fill 0.3s ease;
  color: white;
}

.video__toggle:hover i {
  color: black;
}


.carousel-indicators.container-botones button.circle-btn {
  background-color: #fff;
  border: none;
  border-radius: 100%;
  display: block;
  height: 11px;
  width: 11px;
  opacity: .4;
  padding: 0;
  transition: opacity .1s ease-in-out;
}

.img-fluid {
  max-height: 100dvh;
  width: 100%;
}

.carousel-item video {
  filter: brightness(0.9);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-down {
  display: none; /* lo quito pq en celu queda mal */
}

.scroll-down svg {
  animation: batir 2s cubic-bezier(.08, .71, .82, -.1) infinite;
}

@keyframes batir {
  25% {
    transform: rotate(-6deg);
  }

  32.5% {
    transform: rotate(6deg);
  }

  50% {
    transform: translateZ(0);
  }
}

.mouse-wheel {
  animation: interior_batir 2s cubic-bezier(.37, 1.21, .51, -.62) infinite;
}

@keyframes interior_batir {
  25% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(0);
  }
}




/* -------------------------- */



@media (width > 400px) {

  .contenedor-footer {
    display: flex;
    justify-content: center;
  }

  footer.top .links {
    grid-template-columns: repeat(1, 1fr);
  }

  footer,
  .socials {
    padding: 0 30px;
  }



  .contenedor-footer>img {
    margin: 0 0 50px;
  }
}

@media (width >=640px) {

  /* Estilo barra de progreso */
  #progressBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    border-radius: 3px;
    background-color: #ffffff;
    z-index: 402;
    /* diferente al map de project que tiene 400 por defecto, y el nav fixed tiene 401*/
  }

  .contenedor-footer {
    display: flex;
    width: 100%;
    align-items: start;
  }

  .links-column {
    text-align: left;
  }

  footer.top .links {
    grid-template-columns: repeat(3, 1fr);
  }

  footer.top .socials {
    position: static;
    padding: 0;
  }


  footer.top .socials {
    left: 0;
    translate: 0;
    gap: 40px;
    width: 100%;
  }

  .socials-column :is(h2, p) {
    display: block;
  }

  .project-carousel .slick-slide {
    opacity: 0.8;
  }

}

@media only screen and (min-width: 991px) {
  .navbar-toggle {
    display: none;
  }

  .project-carousel .slick-slide {
    opacity: 0.8 !important;
  }

  .project-carousel .slick-slide:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    opacity: 1 !important;
  }
}

@media (width >=1200px) {
  .contenedor-footer {
    width: 70%;
    margin: auto;
  }

  .links-column {
    text-align: left;
  }

  .links-column h2 {
    font-size: 1.2rem;
    font-weight: bold;
  }

  .links-column a {
    font-size: 1.1rem;
  }

  #backToTopBtn {
    bottom: 30px;
    right: 10px;
  }

}

@media (width >=1500px) {
  #backToTopBtn {
    bottom: 40px;
    right: 70px;
  }

}




/* Loader */
.loader__overlay {
  display: none;
  background-color: #000000;
}

.loader__container {
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.loader__container img {
  margin-bottom: 20px;
  animation: aparecerLogo 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}


@keyframes aparecerLogo {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.2);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}



.container__home {
  display: none;
  flex-direction: column;
  min-height: 100dvh;
}

.content-wrapper {
  flex: 1;
}







/* Ensure the container is set up as desired */

.title-section-home {
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2vw + 1rem, 2.5rem);
}

/* Style for the border element */
section.container.about .about-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

section.container.about .about-carousel .border {
  height: 369px;
  width: 290px;
  background: transparent;
  border-radius: 10px;
  transition: border 1s;
  position: relative;
  border: none !important;
}

section.container .about-carousel .border:hover {
  border: 1px solid rgb(244, 244, 244) !important;
}

/* Style for card elements */
section.container .about-carousel .card {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 379px;
  width: 300px;
  background: grey;
  border-radius: 10px;
  transition: background 0.8s;
  overflow: hidden;
  background: transparent;
}

/* Default styles for card0 */
section.container .about-carousel .card0 {
  background: url('https://i.pinimg.com/736x/8f/a0/51/8fa051251f5ac2d0b756027089fbffde--terry-o-neill-al-pacino.jpg') center center no-repeat;
  background-size: 300px;
}

/* Default styles for card1 */
section.container .about-carousel .card1 {
  background: url('../storage/images/equipo/facu_original_zoom.jpg') center center no-repeat;
  background-size: 300px;
}

/* Default styles for card2 */
section.container .about-carousel .card2 {
  background: url('../storage/images/equipo/santi_original2.jpg') center center no-repeat;
  background-size: 300px;
}

/* Ensure titles and icons are always visible */
section.container .about-carousel h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: white;
  margin: 20px;
  opacity: 1;
  transition: opacity 1s;
  font-size: 25px;
  font-weight: bold;
}

section.container .about-carousel .fa {
  opacity: 1;
  transition: opacity 1s;
}

section.container .about-carousel .icons {
  position: absolute;
  fill: #fff;
  color: #fff;
  height: 130px;
  top: 226px;
  width: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

section.container .about-carousel a {
  color: rgba(255, 252, 252, 0.833);
}

section.container .about-carousel a:hover {
  color: white;
}

section.container .about-carousel .icons:hover {
  cursor: pointer;
}

/* Nueva seccion Sobre nosotros HOME */
section.container.about {
  padding: 12vh 2vh 4vh 2vh;
}

.contenedor-sobre-nosotros {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.sobre-nosotros-texto h1 {
  font-weight: bold;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
  text-transform: uppercase;
}

.sobre-nosotros-texto p {
  margin-top: 20px;
  font-size: 1.1rem;
}

.sobre-nosotros-img {
  display: flex;
  gap: 15px;
  padding: 30px 0px;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.sobre-nosotros-img img {
  width: 40%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.3s ease, outline 0.3s ease;
  display: block;
}

.sobre-nosotros-img .img-1 {
  margin-top: 120px;
}

.sobre-nosotros-img .img-2 {
  margin-bottom: 120px;
}

.sobre-nosotros-img img:hover {
  outline: 1px solid hsl(0, 0%, 100%) !important;
}


/* ------------------------ */


@media (min-width: 650px) {
  section.container.about .about-carousel {
    flex-direction: row;
    justify-content: center;
  }

  section.container .about-carousel h2 {
    opacity: 0 !important;
  }

  section.container .about-carousel .card0:hover {
    background: url('https://i.pinimg.com/736x/8f/a0/51/8fa051251f5ac2d0b756027089fbffde--terry-o-neill-al-pacino.jpg') left center no-repeat;
    background-size: 600px;
  }

  section.container .about-carousel .card0:hover h2 {
    opacity: 1 !important;
  }

  section.container .about-carousel .card0:hover .fa {
    opacity: 1 !important;
  }

  section.container .about-carousel .card1:hover {
    background: url('../storage/images/equipo/facu_original_zoom.jpg') left center no-repeat;
    background-size: 600px;
  }

  section.container .about-carousel .card1:hover h2 {
    opacity: 1 !important;
  }

  section.container .about-carousel .card1:hover .fa {
    opacity: 1 !important;
  }

  section.container .about-carousel .card2:hover {
    background: url('../storage/images/equipo/santi_original2.jpg') left center no-repeat;
    background-size: 630px;
  }

  section.container .about-carousel .card2:hover h2 {
    opacity: 1 !important;
  }

  section.container .about-carousel .card2:hover .fa {
    opacity: 1 !important;
  }

  section.container .about-carousel .icons {
    opacity: 0;
  }

  section.container .about-carousel .card:hover .icons {
    opacity: 1 !important;
  }

  section.container.home-projects {
    height: 90vh;
    gap: 50px;
  }

  .project-carousel .slick-list .slick-track,
  .about-carousel .slick-list .slick-track {
    margin-bottom: 0px !important;
    gap: 15px !important;
  }

  section.container .about-carousel .card {
    width: 300px !important;
    /* tiene que ser el mismo tamaño que el background-size de las card */
  }

}



/* Projects home */
.subtitle-section-home {
  text-wrap: balance;
  text-align: center;
  margin: auto;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

section.container.home-projects {
  padding: 10vh 0vh;
}

.project-carousel.slick-dotted.slick-slider,
.about-carousel.slick-dotted.slick-slider {
  margin-top: 1rem;
}

.project-carousel .slick-list .slick-track,
.about-carousel .slick-list .slick-track {
  margin-bottom: 25px;
  gap: 0px;
}

.project-carousel .slick-dots li button:before,
.about-carousel .slick-dots li button:before {
  color: white;
  opacity: 0.9;
}


.project-carousel .slick-slide {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.project-carousel .slick-slide:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.project-carousel .slick-slide a {
  text-decoration: none;
  color: inherit;
}

.project-carousel .slick-slide:hover .nombre-project-home {
  color: white;
}

.project-carousel .slick-slide img {
  transition: transform 0.3s ease-in-out;
}

.project-carousel .slick-slide:hover img {
  transform: scale(1.05);
}

.project-carousel div .nombre-project-home {
  position: absolute;
  bottom: 0px;
  background: black;
  color: #e7e7e7;
  padding: 10px 20px;
  width: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
}

/* Estilo para el punto activo */
.project-carousel .slick-dots .slick-active button:before,
.about-carousel .slick-dots .slick-active button:before {
  color: black;
  background-color: white;
  border-radius: 50%;
}

.project-carousel .slick-dots .slick-active button,
.about-carousel .slick-dots .slick-active button {
  background-color: white;
  border: none;
}

.contenedor-ver-mas {
  text-align: center;
  margin-top: 5rem;
}

.contenedor-ver-mas a {
  text-decoration: none;
  color: white;
  font-size: clamp(1.1rem, 2vw + 1rem, 1.8rem);
  font-weight: normal;
}

.contenedor-ver-mas a:hover {
  font-weight: bold;
  font-size: clamp(1.1rem, 2vw + 1rem, 1.8rem);
}

/* Section contact home */
section.contact-home {
  width: 100%;
  min-height: 100dvh;
  margin: auto;
  display: flex;
  justify-content: center;
  position: relative;
}

/* Fondo para contrainer home y el de contact us */
section.contact-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../assets/DSC_7906.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 1;
}

section.contact-home .contact-form-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  z-index: 2;
  color: white;
  padding: 40px 20px;
}

section.contact-home .contact-form-container .contact__title {
  text-align: center;
  margin-bottom: 3rem;
}

section.contact-home .contenedor-form-left-right {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

.contact-left .social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.contact-left p {
  font-size: 1.2rem;
  color: white;
}

.contact-left p a {
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
}

.contact-left p a i {
  margin-right: 10px;
}

.contact-left p a:hover {
  color: white;
}

.contact-left .social-icons a i {
  color: white;
  font-size: 25px;
}


@media only screen and (min-width: 1000px) {

  p,
  a {
    font-family: var(--font-medium);
    font-size: 1.25rem;
    color: var(--color-p);
  }

  .navbar.navbar-expand-lg.nav__principal {
    height: 83px;
  }

  /* Estilo para nav != del home */
  .navbar.navbar-expand-lg.navNoHome {
    height: 83px;
  }

  .navbar-brand img {
    width: 40px;
    height: 40px;
    margin: 0px 10px;
  }

  .navbar-brand .img-logo-derecha {
    width: 120px;
  }

  section.contact-home .contenedor-form-left-right {
    flex-direction: row;
    justify-content: center;
    gap: 50px;
  }

  .contact-left p,
  .contact-left p a {
    font-size: 1.5rem;
  }

  .contact-left .social-icons a i {
    font-size: 30px;
  }

  .contact-left .social-icons {
    gap: 40px;
    margin-top: 25px;
  }

  section.contact-home::before {
    opacity: 0.4;
  }

  /* Seccion sobre nosotros */
  section.container.about {
    padding: 12vh 0vh 4vh 0vh;
  }

  .contenedor-sobre-nosotros {
    display: flex;
    flex-direction: row;
    margin-top: 40px;
  }

  .sobre-nosotros-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 38%;
  }

  .sobre-nosotros-texto h1 {
    text-transform: uppercase;
  }

  .sobre-nosotros-img {
    display: flex;
    gap: 15px;
    padding: 30px 0px;
    justify-content: center;
    position: relative;
  }

  .sobre-nosotros-img img {
    width: 40%;
    height: auto;
    object-fit: cover;
    border-radius: 1px;
    max-height: 430px;
  }

  .sobre-nosotros-texto p {
    font-size: 1.2rem;
  }

  /* ---------------------- */
}