/* Video Entrevista - Proporción 16:9 y esquinas redondeadas adaptables */
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 15px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-player {
  border-radius: 16px !important;
  background: transparent;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
}

.video-slide {
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .video-container {
    border-radius: 20px;
    aspect-ratio: 16/9;
    min-height: 250px;
    max-width: 600px;
  }
  .video-player {
    border-radius: 20px !important;
  }
  .video-carousel {
    margin: 0 -20px;
  }
}

@media (max-width: 767px) {
  .video-container {
    border-radius: 12px;
    aspect-ratio: 16/9;
    min-height: 180px;
    max-width: 100vw;
  }
  .video-player {
    border-radius: 12px !important;
  }
}
/* Main Colors */
:root {
  --orange: #eb690b;
  --black: #000000;
  --gray: #666666;
  --white: #ffffff;
}

body {
  font-family: "Arial", sans-serif;
  color: var(--black);
}

/* Buttons */
.btn-primary {
  font-size: clamp(0.875rem, 0.9vw, 1.25rem);
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  padding: clamp(8px, 1.5vw, 12px) clamp(16px, 4vw, 25px);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #d55e0a;
  border-color: #d55e0a;
  color: var(--white);
}

.video-section-cta {
  font-size: clamp(12px,2.4vw, 20px);
  padding: clamp(12px, 2vw, 20px) clamp(24px, 5vw, 40px);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.video-section-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  background-color: #ff7b1c;
  border-color: #ff7b1c;
}

/* Section Styles */
.section-title {
  color: var(--black);
  font-size: clamp(15px, 5.4vw, 30px);
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--orange);
}
/* VLS Section */
.vls-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 15px;
}

/* ...existing code... */

.video-section img {
  max-width: clamp(80px, 40vw, 400px);
  height: auto;
}

.video-section p {
  font-size: clamp(10px, 3vw, 14px);
  line-height: 1.5;
}

.video-section h1 {
  font-size: clamp(14px, 4.7vw, 50px);
  font-weight: bold;
  line-height: 1.2;
}

.video-section h3 {
  font-size: clamp(12px, 3vw, 28px);
  line-height: 1.4;
}


/* Testimonials */
.testimonials-section {
  background-color: var(--gray);
}

.quote-icon {
  position: absolute;
  top: -15px;
  left: 20px;
  color: var(--orange);
  z-index: 1;
}

.quote-icon svg {
  width: 20px;
  height: 20px;
}


.testimonial-card {
  background-color: var(--white);
  font-size: clamp(0.875rem, 0.8vw, 1rem);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
  padding-top: 60px;
  height: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}


/* Ajustamos para que slick administre correctamente cada slide */
.testimonial-carousel .slick-slide {
  padding: 30px 12px;
  box-sizing: border-box;
}

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

.testimonial-author {
  color: var(--orange);
}

#testimonialCarousel .carousel-indicators {
  bottom: -40px;
}

#testimonialCarousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
}

#testimonialCarousel .carousel-item {
  padding: 0 15px;
}

/* Process Cards */
.process-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.process-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 1rem;
}

/* Solution Cards */
.solution-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 20px 20px 20px 30px !important;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.solution-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background-color: var(--orange);
}

.solution-icon {
    width: 50px;
    height: 50px;
    background-color: #FFF5E9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-icon i {
    font-size: 20px;
    color: var(--orange);
}

.solution-icon img {
    width: 95%;
    object-fit: contain;
}

.solution-content {
    display: flex;
    flex-direction: column;
}

.solution-title {
    font-size: clamp(0.9rem, 1vw, 1.25rem);
    margin: 0;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.solution-card p {
    font-size: clamp(0.75rem, 0.7vw, 0.9rem);
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

.solutions-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}


#fairsCarousel .carousel-indicators {
  bottom: -40px;
}

#fairsCarousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: var(--orange);
}
.project-item{
  	font-size: clamp(0.875rem, 0.8vw, 1rem);
}
.project-item,
.team-member,
.fair-item {  
  padding: 8px;
  border-radius: 15px;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: auto;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 10px;
  transition: transform 0.3s ease;
  overflow: hidden;
}


.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: auto;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
  color: var(--black);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 15px 0 8px;
  text-align: center;
  padding: 0 10px;
  line-height: 1.3;
  width: 100%;
}

.team-member p {
  color: var(--gray);
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
  padding: 0 10px;
  line-height: 1.2;
  width: 100%;
}
/* Company Logos */
#logoCarousel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.company-logo {
  max-height: clamp(15px, 5.5vw, 40px);
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.company-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}
.logo-carousel-container {
  position: relative;
}

.logo-carousel-container::before,
.logo-carousel-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.logo-carousel-container::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.logo-carousel-container::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

/* Estilos de las secciones de ferias */
.fair-item {
    padding: 20px;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 10px;
}

.fair-item .row {
    align-items: flex-start;
}

#ferias h4 {
  margin-top: 15px;
  font-size: clamp(12px, 4vw, 25px);
  color: var(--black);
  font-weight: 600;
  margin-bottom: 15px;
}

#ferias h5 {
    font-size: clamp(12px, 4vw, 20px);
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 10px;
}

#ferias p {
    font-size: clamp(10px, 3.5vw, 16px);
    color: var(--gray);
    line-height: 1.6;
}

/* Footer */
.footer {
  background-color: var(--black);
}

.footer p {
  font-size: clamp(10px, 3vw, 20px);  
}

/* Modal Styles */
.modal-header {
  background-color: var(--orange);
  color: var(--white);
}

.modal-title {
  font-weight: 600;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease-in-out;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
  width: 32px;
  height: 32px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .py-5 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .hero-section {
    padding: 50px 0;
  }

  .process-number {
    font-size: 2rem;
  }
}