/* =========================
   GLOBAL
========================= */

:root {
  --bs-body-font-family: "Montserrat", sans-serif;
}

html,
body {
  font-family: "Montserrat", sans-serif;
}

body,
button,
input,
select,
textarea,
.navbar,
.card,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
li {
  font-family: "Montserrat", sans-serif !important;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.bg-g21 {
  background-color: #333366 !important;
}

h2 {
  font-size: 1.2rem !important;
}

p {
  font-size: 1.2rem;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-nav {
  margin-right: 50px;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler {
  border-color: #fff;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
  font-size: 18px;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #ff9933;
}

/* =========================
   SWIPER
========================= */

.swiper-container {
  margin-top: 70px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.swiper-slide div {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.swiper-pagination {
  position: absolute;
  margin-bottom: 55px;
  left: 0;
  width: 100%;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #333366;
}

.swiper-button-next,
.swiper-button-prev {
  color: #333366;
}

/* =========================
   SLICK
========================= */

.slick-prev,
.slick-next {
  background-color: #333366;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 1000;
}

.slick-prev:before,
.slick-next:before {
  color: #fff;
  font-size: 20px;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background-color: #333 !important;
}

/* =========================
   SOCIAL MEDIA
========================= */

.social-media {
  position: fixed;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1000;
}

.social-media a {
  display: block;
  min-width: 48px;
  min-height: 48px;
  color: #fff;
  background-color: #3b5998;
  padding: 10px;
  text-align: center;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.social-media a:hover {
  background-color: #3b5998d4;
}

.social-media a.instagram {
  background-color: #e4405f;
}
.social-media a.tiktok {
  background-color: #000;
}
.social-media a.youtube {
  background-color: #f00;
}
.social-media a.spotify {
  background-color: #1db954;
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float a {
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  padding: 5px 10px 10px 13px;
  font-size: 28px;
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-float a:hover {
  background-color: #20ba58;
}

/* =========================
   CLIENTES SECTION
========================= */

.clientes-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.clientes-section h3 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.swiper {
  padding: 20px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.clientes-section .swiper-slide img {
  width: 70%;
  max-width: 200px; /* opcional para que no crezcan demasiado */
  height: auto;
  transition: transform 0.3s ease;
}

/* Opcional: pequeño efecto hover elegante */
.clientes-section .swiper-slide img:hover {
  transform: scale(1.05);
}

/* =========================
   VIDEO CARD
========================= */

.video-card {
  margin-bottom: 30px;
  transition: transform 0.3s;
}

.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-title {
  color: #333;
  margin-top: 10px;
  font-weight: bolder;
}

.video-description {
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
}

/* =========================
   SERVICE CARD
========================= */

.service-card {
  color: #ffffff;
  text-align: center;
  margin: 0 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.service-title {
  color: #333333;
  margin-bottom: 10px;
  padding-top: 15px;
  font-size: 1.5rem;
  font-weight: 600;
}

.service-description {
  font-size: 1.2rem;
  padding: 0 20px 20px;
  font-weight: 500;
  color: #333333;
}

.text-alineados {
  text-align: justify;
  text-justify: inter-word;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  background: #999999;
}

.contact-section h2 {
  color: #ff8c00;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-section .form-control {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #333;
  border-radius: 0;
}

.contact-section .form-control:focus {
  box-shadow: none;
  border-color: #ff8c00;
}

.contact-section .btn-primary {
  background-color: #333366;
  border-color: #345b9d;
}

.contact-section .btn-primary:hover {
  background-color: #cfced3;
  border-color: #333;
  color: #000;
}

/* =========================
   FOOTER
========================= */

footer {
  background-color: #ff9933;
  color: #333333;
  padding: 20px 0;
  text-align: center;
}

/* =========================
   RESPONSIVE
========================= */

/* @media (max-width: 1326px) {
  .swiper-container {
    height: calc(70vh - -62px) !important;
  }
} */

@media (min-width: 1200px) {
  .h2,
  h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 1024px) {
  .swiper-container {
    height: 25vh !important;
  }

  .swiper-pagination {
    margin-bottom: 70px;
  }
}

@media (max-width: 768px) {
  .swiper-container {
    height: 36vh !important;
    margin-top: 75px;
  }

  .swiper-pagination {
    margin-bottom: 200px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: calc(1rem + 0.9vw);
  }

  .clientes-section h3 {
    font-size: 1.2rem;
  }

  .swiper-container {
    height: 16vh !important;
  }

  .social-media {
    display: none;
  }
}

@media (max-width: 992px) {
  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.8);
  }

  .navbar-nav .nav-link {
    color: #fff !important;
  }
}
