@charset "UTF-8";
.bg-blue {
  background-color: #2c2c3c;
}

.bg-black {
  background-color: #1d1d1d;
}

.bg-gray {
  background-color: #eaeaea;
}

.color-black {
  color: #1d1d1d;
}

.bg-yellow {
  background-color: #cead39;
}

.color-yellow {
  color: #cead39;
}

.color-primary {
  color: #c49569;
}

nav {
  height: 64px;
  padding: 8px 16px;
  position: sticky;
  z-index: 9;
  top: 0;
  border-bottom: 2px solid #c49569;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav .nav-logo {
  height: 100%;
  max-width: 150px;
  min-width: 150px;
}
nav .nav-menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  list-style: none;
}
nav .nav-menu li {
  list-style: none;
}
nav .nav-menu li a {
  text-decoration: none;
  color: white;
  padding: 8px 12px;
  font-size: 14px;
  transition: color 0.3s ease;
}
nav .nav-menu li a:hover {
  color: #c49569;
}
nav .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
nav .hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #c49569;
  margin: 3px 0;
  transition: 0.3s;
}
nav .hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
nav .hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
nav .hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.offcanvas {
  background-color: #1d1d1d;
}
.offcanvas .offcanvas-header {
  border-bottom: 1px solid #c49569;
}
.offcanvas .offcanvas-header .offcanvas-title {
  color: white;
  font-weight: bold;
}
.offcanvas .offcanvas-header .btn-close {
  filter: invert(1);
}
.offcanvas .mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offcanvas .mobile-nav-menu li {
  margin: 15px 0;
  background-color: #1b1b1b;
}
.offcanvas .mobile-nav-menu li a {
  letter-spacing: 1px;
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 16px;
  display: block;
  transition: color 0.3s ease;
}
.offcanvas .mobile-nav-menu li a:hover {
  color: #c49569;
}

@media (max-width: 768px) {
  nav {
    padding: 8px 12px;
  }
  nav .nav-logo {
    max-width: 120px;
  }
  nav .nav-menu {
    display: none;
  }
  nav .hamburger {
    display: flex;
  }
}
@media (max-width: 576px) {
  nav {
    padding: 8px 10px;
  }
  nav .nav-logo {
    max-width: 100px;
  }
}
h1 {
  position: relative;
}
h1::before {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: #c49569;
}

.h2-line-left {
  position: relative;
}
.h2-line-left::before {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 0;
  width: 100px;
  height: 2px;
  background-color: #c49569;
}

.h2-line-center {
  position: relative;
}
.h2-line-center::before {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: #c49569;
}

.line {
  background-color: #eaeaea;
  height: 1px;
}

.duop {
  width: 75px;
}

a {
  text-decoration: none;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.logo {
  width: 200px;
  min-width: 200px;
  max-width: 200px;
  display: block;
  margin: 0 auto;
  padding-top: 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.home {
  height: 400px;
  max-height: 400px;
  background-image: url("../img/books-background.jpg");
  background-size: cover;
  background-attachment: scroll;
  background-position: center;
  position: relative;
}
.home .logo {
  width: 150px;
  max-width: 150px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.home h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  max-width: 90%;
  margin: 0 auto;
}
.home .btn-principal {
  margin-top: 1rem;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

@media (min-width: 768px) {
  .home {
    height: 450px;
    max-height: 450px;
  }
  .home .logo {
    width: 180px;
    max-width: 180px;
  }
  .home h1 {
    font-size: 1.8rem;
    max-width: 80%;
  }
}
@media (min-width: 1024px) {
  .home {
    height: 500px;
    max-height: 500px;
    background-attachment: fixed;
  }
  .home .logo {
    top: 10px;
    width: 200px;
    max-width: 200px;
  }
  .home h1 {
    font-size: 2rem;
    max-width: 70%;
  }
}
@media (max-width: 480px) {
  .home {
    height: 450px;
    max-height: 450px;
  }
  .home .logo {
    width: 120px;
    max-width: 120px;
    top: 10px;
  }
  .home h1 {
    font-size: 1.2rem;
    max-width: 95%;
  }
}
.btn-principal {
  cursor: pointer;
  background-color: #cead39;
  border: none;
  outline: none;
  color: white;
  padding: 10px 20px;
  border-radius: 0;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-principal:hover {
  color: white;
  background-color: #99734f;
}

.services__card {
  cursor: default;
  position: relative;
  padding: 20px;
  min-height: 300px;
  background-color: #1d1d1d;
  color: white;
  margin-bottom: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.services__card:hover {
  background-color: #c49569;
  transform: translateY(-5px);
}
.services__card .service-content {
  z-index: 3;
  width: 100%;
  height: 100%;
  position: relative;
}
.services__card-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
  transition: top 0.3s ease;
  width: 90%;
}
.services__card-animation {
  opacity: 0;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  transition: opacity 0.3s ease;
}
.services__card-description {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}
.services__card:hover .services__card-title {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.services__card:hover .services__card-animation {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  opacity: 1;
}
.services__card:hover .services__card-title {
  top: 15%;
  left: 50%;
  transform: translate(-50%, 0);
}

@media (min-width: 768px) {
  .services__card {
    padding: 24px;
    min-height: 350px;
  }
  .services__card-title {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .services__card-description {
    font-size: 15px;
  }
}
@media (min-width: 1024px) {
  .services__card {
    padding: 32px;
    min-height: 400px;
  }
  .services__card-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .services__card-description {
    font-size: 16px;
  }
}
#prevencion {
  position: relative;
}
#prevencion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/service-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.2;
  z-index: 2;
}

#asesoria {
  position: relative;
}
#asesoria::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/service-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.2;
  z-index: 2;
}

#negociacion {
  position: relative;
}
#negociacion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/service-3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.2;
  z-index: 2;
}

#desarrollo {
  position: relative;
}
#desarrollo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/service-4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.2;
  z-index: 2;
}

#auditoria {
  position: relative;
}
#auditoria::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/auditoria.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.2;
  z-index: 2;
}

#asuetos {
  position: relative;
}
#asuetos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/honorarios.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.2;
  z-index: 2;
}

#mensuales {
  position: relative;
}
#mensuales::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/mensuales.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.2;
  z-index: 2;
}

.service-slide {
  cursor: default;
  position: relative;
  transition: background-color 0.3s ease;
}
.service-slide .service-slide-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  transition: top 0.3s ease;
}
.service-slide .service-slide-description {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  transition: opacity 0.3s ease;
}
.service-slide:hover {
  background-color: #cead39;
}
.service-slide:hover .service-slide-title {
  top: 15%;
  left: 50%;
  transform: translate(-50%, 0);
}
.service-slide:hover .service-slide-description {
  color: white;
  opacity: 1;
}

.yellow {
  background-color: #cead39;
  color: white;
  height: 300px;
}

.clients .logo-hover {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}
.clients .logo-hover img {
  cursor: default;
  display: block;
  margin: 0 auto;
  width: 80%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(100%);
}
.clients .logo-hover img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Responsive para tablets */
@media (min-width: 768px) {
  .clients .logo-hover {
    padding: 20px;
    min-height: 120px;
  }
  .clients .logo-hover img {
    width: 70%;
    max-width: 180px;
  }
}
/* Responsive para desktop */
@media (min-width: 1024px) {
  .clients .logo-hover {
    padding: 25px;
    min-height: 140px;
  }
  .clients .logo-hover img {
    width: 60%;
    max-width: 200px;
  }
}
/* Responsive para móviles pequeños */
@media (max-width: 480px) {
  .clients .logo-hover {
    padding: 10px;
    min-height: 80px;
  }
  .clients .logo-hover img {
    width: 90%;
    max-width: 120px;
  }
}
.course {
  background-color: #eaeaea;
}

.team-description--card {
  display: flex;
  min-height: 250px;
  background-color: #1d1d1d;
  position: relative;
  color: white;
  flex-direction: column;
  justify-content: center;
}
.team-description--card h5, .team-description--card p {
  margin: 0;
}
.team-description--card h5 {
  font-weight: bold;
  margin-bottom: 16px;
}

#specialists {
  position: relative;
}
#specialists::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/team-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.1;
  z-index: 2;
}

#team {
  position: relative;
}
#team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/team-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.1;
  z-index: 2;
}

#personalized-attention {
  position: relative;
}
#personalized-attention::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/team-3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.1;
  z-index: 2;
}

#management {
  position: relative;
}
#management::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/team-4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.1;
  z-index: 2;
}

.form-custom {
  display: block;
  width: 100%;
  background-color: white;
  padding: 8px;
  border: none;
  outline: none;
}

.rrss-icon {
  text-align: center;
  font-size: 40px;
  display: block;
  color: #c49569;
}

.blog .blog--principal--img {
  height: 350px;
  min-height: 350px;
  max-height: 350px;
}
.blog .blog--principal--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog .blog--principal .blog--principal--content {
  color: white;
  height: 100%;
  background-color: #1d1d1d;
}
.blog__card {
  background-color: #eaeaea;
}
.blog__card--img {
  height: 250px;
  min-height: 250px;
  max-height: 250px;
}
.blog__card--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Estilos generales */
.swiper-button-next,
.swiper-button-prev {
  color: #c49569;
  background-color: #c49569;
  color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #b07f52;
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  background-color: #c49569;
  opacity: 0.5;
  transition: all 0.3s ease;
  width: 8px;
  height: 8px;
}

.swiper-pagination-bullet:hover {
  opacity: 0.8;
  transform: scale(1.2);
}

.swiper-pagination-bullet-active {
  background-color: #b07f52;
  opacity: 1;
  transform: scale(1.3);
}

/* Swiper principal */
.swiper {
  width: 100%;
  height: 300px;
}

.swiper-slide {
  text-align: center;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.9) 100%);
  font-size: 14px;
}

.swiper-slide .description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 60%, rgb(0, 0, 0) 100%);
}

.swiper-slide .description h4 {
  font-size: 16px;
  margin-bottom: 0.5rem;
}

.swiper-slide .description p {
  font-size: 14px;
  margin-bottom: 1rem;
}

/* Responsive para tablets */
@media (min-width: 768px) {
  .swiper {
    height: 400px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 16px;
  }
  .swiper-slide .caption {
    padding: 1rem 1.25rem;
    font-size: 16px;
  }
  .swiper-slide .description {
    padding: 2rem;
  }
  .swiper-slide .description h4 {
    font-size: 18px;
  }
  .swiper-slide .description p {
    font-size: 16px;
  }
}
/* Responsive para desktop */
@media (min-width: 1024px) {
  .swiper {
    height: 500px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 45px;
    height: 45px;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 18px;
  }
  .swiper-slide .caption {
    padding: 1.25rem 1.5rem;
    font-size: 18px;
  }
  .swiper-slide .description {
    padding: 2.5rem;
  }
  .swiper-slide .description h4 {
    font-size: 20px;
  }
  .swiper-slide .description p {
    font-size: 18px;
  }
}
/* Ocultar navegación en móviles pequeños */
@media (max-width: 480px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  .swiper-pagination {
    bottom: 10px;
  }
}
footer img {
  max-width: 200px;
}

/*# sourceMappingURL=styles.css.map */
