/* General Styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");

* {
  font-family: "Poppins", sans-serif;
}

.navbar-brand {
  /* /* font-family: 'Playfair Display', serif;*/
  font-weight: bold;
  font-size: 1.8rem;
}

.hero h1 {
  /* /* font-family: 'Playfair Display', serif;*/
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.card-title {
  /* /* font-family: 'Playfair Display', serif;*/
  color: #333;
  font-weight: 600;
}

/* Buttons */
.btn-primary {
  background-color: #007bff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  margin-top: 2rem;
}

.social-links a {
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #007bff !important;
}

/* Hero Carousel Styles */
#heroCarousel .carousel-item {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.carousel-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 30%,
    rgba(0, 0, 0, 0.4)
  );
}

.carousel-background img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

.carousel-item.active .carousel-background img {
  transform: scale(1);
}

.carousel-caption {
  text-align: left;
  left: 10%;
  right: 10%;
  bottom: 50%;
  transform: translateY(50%);
  max-width: 600px;
}

.carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.carousel-caption p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards 0.2s;
}

.carousel-caption .btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards 0.4s;
}

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

.carousel-indicators {
  bottom: 50px;
}

.carousel-indicators li {
  width: 50px;
  height: 4px;
  border-radius: 2px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.carousel-indicators li.active {
  background-color: #fff;
  width: 60px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  background-size: 20px;
}

/* Brands Section */
.brands {
  background-color: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brands h3 {
  /* font-family: 'Playfair Display', serif;*/
  color: #333;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.brand-logo {
  max-height: 50px;
  width: auto;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .carousel-caption {
    text-align: center;
    left: 5%;
    right: 5%;
  }

  .carousel-caption h1 {
    font-size: 2.5rem;
  }

  .carousel-caption p {
    font-size: 1.1rem;
  }

  .carousel-caption .btn {
    padding: 8px 20px;
  }

  .brands .row {
    justify-content: center;
  }

  .brand-logo {
    max-height: 40px;
    margin: 15px 0;
  }

  .services .card {
    margin-bottom: 20px;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .services h2 {
    font-size: 1.8rem;
  }

  .carousel-indicators {
    bottom: 20px;
  }

  .carousel-indicators li {
    width: 30px;
    height: 3px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 15px;
  }
}

/* Products Section */
.products {
  background-color: #fff;
}

.products h2 {
  /* font-family: 'Playfair Display', serif;*/
  color: #333;
  margin-bottom: 3rem;
}

.product-card {
  position: relative;
  height: 300px;
  background: #f5f5f5;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card.pink {
  background: #ffe4e4;
}

.product-card.purple {
  background: #e4e4ff;
}

.product-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  transform: scaleX(-1);
}

.product-card:hover {
  transform: scale(1.1);
}

.product-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*background: linear-gradient(to right, rgba(255, 255, 255, 0.9) 10%, transparent);*/
}

.special-tag {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.1rem;
}

.product-info h3 {
  /* font-family: 'Playfair Display', serif; */
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.product-info .btn {
  width: fit-content;
  border-radius: 25px;
  padding: 8px 25px;
  transition: all 0.3s ease;
}

.product-info .btn:hover {
  background: #333;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .product-card {
    height: 300px;
  }

  .product-info {
    width: 70%;
  }

  .product-info h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .product-card {
    height: 250px;
  }

  .product-info {
    width: 80%;
    padding: 1.5rem;
  }

  .product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .special-tag {
    font-size: 0.8rem;
  }
}

/* About Page Styles */
.about-hero {
  padding-top: 120px;
  margin-top: 76px;
  background-color: #fff;
}

.about-hero h1 {
  font-family: "Poppins", sans-serif;
  color: #333;
}

.values .card {
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.values .card:hover {
  transform: translateY(-10px);
}

.team-card {
  transition: transform 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  height: 300px;
  object-fit: cover;
}

.team-card .card-body {
  padding: 1.5rem;
}

.team-card .card-title {
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.5rem;
}

/* Custom Background Colors */
.bg-pink {
  background-color: #eda0a8;
}

.bg-green {
  background-color: #a3c6e7;
}

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

.bg-black {
  background-color: #000000;
  color: white;
}

.bg-ligthgreen {
  background-color: #128c7e;
  color: white;
}

.bg-ligthblue {
  background-color: rgb(143, 226, 253);
}

.bg-purple {
  background-color: #bfb4dd;
}

.bg-blue {
  background-color: #007bff;
  color: white;
}

/* Blog Styles */
.blog-hero {
  margin-top: 76px;
  background-color: #fff;
}

.blog-posts .card {
  transition: transform 0.3s ease;
}

.blog-posts .card:hover {
  transform: translateY(-5px);
}

.blog-posts .card-img-top {
  height: 200px;
  object-fit: cover;
}

.badge {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.card-title {
  font-family: "Poppins", sans-serif;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px 0;
}

@media (max-width: 992px) {
  .social-cards {
    grid-template-columns: 1fr;
  }

  .social-card {
    margin-bottom: 15px;
  }
}

.social-card {
  display: flex;
  align-items: center;
  padding: 25px;
  border-radius: 15px;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.card-content {
  flex: 1;
}

.card-content h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.card-content p {
  margin: 8px 0 15px;
  opacity: 0.9;
  font-size: 0.95rem;
}

.social-card.facebook {
  background: linear-gradient(-15deg, #3b5998, #1e3c72);
}

.social-card.instagram {
  background: linear-gradient(-15deg, #833ab4, #fd1d1d);
}

.social-card.whatsapp {
  background: linear-gradient(-15deg, #25d366, #128c7e);
}

.social-card.gmail {
  background: linear-gradient(-15deg, #ea4335, #fbbc05);
  color: white;
}

.social-card.tiktok {
  background: linear-gradient(-15deg, #1ff1ee, #fe2c59);
  color: white;
}

.social-card .btn {
  color: #333;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.social-card .btn:hover {
  transform: translateX(5px);
  background: white;
  color: #333;
}

.social-card .btn i {
  margin-left: 8px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .social-cards {
    grid-template-columns: 1fr;
  }

  .social-card {
    margin-bottom: 15px;
  }
}

.btn-facebook {
  background-color: #3b5998;
  color: white;
}

.btn-instagram {
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
  color: white;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
}

.btn-facebook:hover,
.btn-instagram:hover,
.btn-whatsapp:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-buttons .btn {
  padding: 15px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-info {
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  color: white;
  font-size: 1.2rem;
}

.contact-text {
  margin-left: 15px;
}

.contact-text h5 {
  color: #333;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-text p {
  color: #666;
  margin-bottom: 0;
}

.contact-item {
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-info i {
  margin-right: 10px;
  color: #007bff;
}

.card .col-md-5 {
  height: 250px;
  overflow: hidden;
}

.card .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mission-card,
.vision-card {
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-5px);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.mission-icon,
.vision-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  transform: rotate(-15deg);
}

.empresa-logo {
  max-height: 80px !important;
  transform: scale(2);
  transition: transform 0.3s ease;
}

.empresa-logo:hover {
  transform: scale(2.2);
}

.brandsSwiper {
  padding: 20px 40px;
}

.brandsSwiper .swiper-button-next,
.brandsSwiper .swiper-button-prev {
  color: #333;
}

.brandsSwiper .swiper-pagination-bullet-active {
  background: #333;
}

.brandsSwiper .brand-card {
  padding: 15px;
  transition: transform 0.3s ease;
}

.brandsSwiper .brand-card:hover {
  transform: translateY(-5px);
}
