/* ========================================
   CAROUSEL MODERNO - 2A PRINT
   ======================================== */

/* Importar fontes elegantes */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ========================================
   ESTRUTURA BÁSICA DO CAROUSEL
   ======================================== */

.modern-carousel {
  height: 100vh !important;
  min-height: 100vh !important;
  margin: 40px 0 0 0 !important;
  padding: 0px !important;
  position: relative;
  overflow: hidden;
}

.carousel-image-container {
  position: relative;
  height: 100vh !important;
  min-height: 100vh !important;
  object-fit: cover !important;
}

.carousel-img {
  height: 100vh !important; 
  min-height: 100vh !important;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease-in-out;
}

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


.logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(90deg, #f4f4f4, #6b6b6c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* ========================================
   OVERLAY - AJUSTE A OPACIDADE AQUI
   ======================================== */

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* AJUSTAR: Diminua os valores para overlay mais claro */
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

/* ========================================
   ÁREA DE TEXTO - SEM SCROLL INTERNO
   ======================================== */

.modern-caption {
  position: absolute !important;
  /* AJUSTAR: Área do texto que garante que tudo caiba na tela */
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  
  width: 90% !important;
  max-width: 1200px !important;
  height: auto !important;
  max-height: none !important; /* REMOVIDO: max-height que causava scroll */
  
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10 !important;
  color: white !important;
  text-align: center !important;
  padding: 1rem !important;
  
  /* REMOVIDO: overflow-y que causava scroll interno */
  overflow: visible !important;
}

.modern-caption .container {
  height: auto !important;
  max-width: 100% !important;
  width: 100% !important;
}

.modern-caption .row {
  height: auto !important;
}

/* ========================================
   TÍTULOS - TAMANHOS REDUZIDOS PARA CABER NA TELA
   ======================================== */

.caption-title,
.elegant-title {
  font-family: 'Playfair Display', serif !important;
  /* AJUSTAR: Tamanho reduzido para evitar scroll */
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.02em !important;
  /* AJUSTAR: Espaçamento reduzido */
  margin-bottom: 0.8rem !important;
  color: white !important;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8) !important;
  position: relative !important;
  z-index: 15 !important;
}

.elegant-title-secondary {
  font-family: 'Playfair Display', serif !important;
  /* AJUSTAR: Tamanho reduzido para evitar scroll */
  font-size: clamp(1.5rem, 3.5vw, 2.5rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
  /* AJUSTAR: Espaçamento reduzido */
  margin-bottom: 0.8rem !important;
  color: white !important;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8) !important;
  position: relative !important;
  z-index: 15 !important;
}

/* ========================================
   GRADIENTE ARCO-ÍRIS - CORES VIBRANTES SEM FUNDO CINZA
   ======================================== */

/* Animação do gradiente arco-íris */
@keyframes rainbowShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  33% {
    background-position: 100% 50%;
  }
  66% {
    background-position: 200% 50%;
  }
}

/* ========================================
   SUBTÍTULO - TAMANHO REDUZIDO
   ======================================== */

.caption-subtitle,
.caption-subtitle-elegant {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 400 !important;
  /* AJUSTAR: Tamanho reduzido para evitar scroll */
  font-size: clamp(0.9rem, 1.5vw, 1.1rem) !important;
  line-height: 1.4 !important;
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
  /* AJUSTAR: Largura máxima do subtítulo */
  max-width: 600px !important;
  /* AJUSTAR: Espaçamento reduzido */
  margin: 0 auto 1.5rem auto !important;
  position: relative !important;
  z-index: 15 !important;
}

/* ========================================
   BADGE DE DESTAQUE - TAMANHO REDUZIDO
   ======================================== */

.caption-badge {
  display: inline-flex !important;
  align-items: center !important;
  background: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  /* AJUSTAR: Tamanho reduzido do badge */
  padding: 0.4rem 1rem !important;
  border-radius: 20px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
  /* AJUSTAR: Espaçamento reduzido */
  margin-bottom: 1rem !important;
  position: relative !important;
  z-index: 15 !important;
}

.caption-badge:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px) !important;
}

/* ========================================
   BOTÕES DE AÇÃO - ESPAÇAMENTO REDUZIDO
   ======================================== */

.caption-buttons {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 0.8rem !important;
  /* AJUSTAR: Espaçamento reduzido dos botões */
  margin: 1.2rem 0 !important;
  position: relative !important;
  z-index: 15 !important;
}

.caption-buttons .btn {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  /* AJUSTAR: Tamanho reduzido dos botões */
  padding: 0.6rem 1.5rem !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.btn-gradient-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4) !important;
}

.btn-gradient-primary:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5) !important;
  color: white !important;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  color: white !important;
  backdrop-filter: blur(10px) !important;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  transform: translateY(-3px) !important;
  color: white !important;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2) !important;
}

/* ========================================
   LISTA DE FEATURES - ESPAÇAMENTO REDUZIDO
   ======================================== */

.feature-list,
.feature-list-centered {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.6rem !important;
  /* AJUSTAR: Largura máxima da lista */
  max-width: 350px !important;
  margin: 0 auto !important;
  position: relative !important;
  z-index: 15 !important;
}

.feature-item ,
.feature-item-elegant  {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: rgba(11, 57, 10, 0.95) !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 0.4rem 1rem !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 20px !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  transition: all 0.3s ease !important;
  min-width: 180px !important;
  width: 100% !important;
}

.feature-item:hover,
.feature-item-elegant:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-2px) !important;
}

/* ========================================
   BADGES DE QUALIDADE - ESPAÇAMENTO REDUZIDO
   ======================================== */

.quality-badges,
.quality-badges-centered {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
  position: relative !important;
  z-index: 15 !important;
}

.badge-elegant {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  padding: 0.4rem 0.8rem !important;
  border-radius: 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
  text-shadow: none !important;
}

.badge-elegant:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3) !important;
}

/* ========================================
   ESTATÍSTICAS - ESPAÇAMENTO REDUZIDO
   ======================================== */

.caption-stats {
  /* AJUSTAR: Espaçamento reduzido das estatísticas */
  margin-top: 1.2rem !important;
  position: relative !important;
  z-index: 15
!important;
}

.stat-item {
  padding: 0.8rem !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 15px !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  transition: all 0.3s ease !important;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

.stat-number {
  font-family: 'Playfair Display', serif !important;
  /* AJUSTAR: Tamanho reduzido dos números das estatísticas */
  font-size: clamp(1.2rem, 2.5vw, 1.8rem) !important;
  font-weight: 700 !important;
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6) !important;
  margin-bottom: 0.2rem !important;
  display: block !important;
}

.stat-label {
  font-family: 'Poppins', sans-serif !important;
  /* AJUSTAR: Tamanho reduzido dos labels das estatísticas */
  font-size: clamp(0.65rem, 1.2vw, 0.8rem) !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  display: block !important;
}

/* ========================================
   RESPONSIVIDADE - AJUSTE BREAKPOINTS AQUI
   ======================================== */

/* Tablets grandes e desktops pequenos */
@media (max-width: 1199.98px) {
  .modern-caption {
    width: 95% !important;
    padding: 0.8rem !important;
  }
  
  .caption-title,
  .elegant-title {
    font-size: clamp(1.8rem, 4vw, 3rem) !important;
    margin-bottom: 0.6rem !important;
  }
  
  .elegant-title-secondary {
    font-size: clamp(1.4rem, 3.5vw, 2.2rem) !important;
    margin-bottom: 0.6rem !important;
  }
  
  .caption-subtitle,
  .caption-subtitle-elegant {
    font-size: clamp(0.85rem, 1.4vw, 1rem) !important;
    margin-bottom: 1.2rem !important;
  }
}

/* Tablets */
@media (max-width: 991.98px) {
  .modern-carousel {
    /* AJUSTAR: Altura do carousel em tablets */
    height: 90vh !important;
    min-height: 500px !important;
  }
  
  .carousel-image-container,
  .carousel-img {
    height: 90vh !important;
    min-height: 500px !important;
  }
  
  .modern-caption {
    width: 95% !important;
    padding: 0.6rem !important;
  }
  
  .caption-title,
  .elegant-title {
    font-size: clamp(1.6rem, 4.5vw, 2.5rem) !important;
    margin-bottom: 0.5rem !important;
  }
  
  .elegant-title-secondary {
    font-size: clamp(1.3rem, 3.8vw, 2rem) !important;
    margin-bottom: 0.5rem !important;
  }
  
  .caption-subtitle,
  .caption-subtitle-elegant {
    font-size: clamp(0.8rem, 1.6vw, 0.95rem) !important;
    margin-bottom: 1rem !important;
  }
  
  .caption-badge {
    font-size: 0.75rem !important;
    padding: 0.35rem 0.8rem !important;
    margin-bottom: 0.8rem !important;
  }
  
  .caption-buttons {
    margin: 1rem 0 !important;
    gap: 0.6rem !important;
  }
  
  .caption-buttons .btn {
    padding: 0.5rem 1.2rem !important;
    font-size: 0.85rem !important;
  }
  
  .caption-stats {
    margin-top: 1rem !important;
  }
}

/* Smartphones grandes */
@media (max-width: 767.98px) {
  .modern-carousel {
    /* AJUSTAR: Altura do carousel em smartphones */
    height: 85vh !important;
    min-height: 450px !important;
  }
  
  .carousel-image-container,
  .carousel-img {
    height: 85vh !important;
    min-height: 450px !important;
  }
  
  .modern-caption {
    width: 95% !important;
    padding: 0.5rem !important;
  }
  
  .caption-title,
  .elegant-title {
    font-size: clamp(1.4rem, 5vw, 2.2rem) !important;
    margin-bottom: 0.4rem !important;
  }
  
  .elegant-title-secondary {
    font-size: clamp(1.2rem, 4.2vw, 1.8rem) !important;
    margin-bottom: 0.4rem !important;
  }
  
  .caption-subtitle,
  .caption-subtitle-elegant {
    font-size: clamp(0.75rem, 1.8vw, 0.9rem) !important;
    margin-bottom: 0.8rem !important;
    max-width: 100% !important;
  }
  
  .caption-badge {
    font-size: 0.7rem !important;
    padding: 0.3rem 0.7rem !important;
    margin-bottom: 0.6rem !important;
  }
  
  .caption-buttons {
    flex-direction: column !important;
    align-items: center !important;
    margin: 0.8rem 0 !important;
    gap: 0.5rem !important;
  }
  
  .caption-buttons .btn {
    padding: 0.45rem 1rem !important;
    font-size: 0.8rem !important;
    width: 100% !important;
    max-width: 220px !important;
  }
  
  .feature-list,
  .feature-list-centered {
    max-width: 100% !important;
    gap: 0.5rem !important;
  }
  
  .feature-item,
  .feature-item-elegant {
    font-size: 0.8rem !important;
    padding: 0.35rem 0.8rem !important;
    min-width: auto !important;
  }
  
  .caption-stats {
    margin-top: 0.8rem !important;
  }
  
  .stat-number {
    font-size: clamp(1rem, 3vw, 1.4rem) !important;
  }
  
  .stat-label {
    font-size: clamp(0.6rem, 1.5vw, 0.75rem) !important;
  }
}

/* Smartphones pequenos */
@media (max-width: 575.98px) {
  .modern-carousel {
    /* AJUSTAR: Altura do carousel em telas muito pequenas */
    height: 80vh !important;
    min-height: 400px !important;
  }
  
  .carousel-image-container,
  .carousel-img {
    height: 80vh !important;
    min-height: 400px !important;
  }
  
  .modern-caption {
    width: 95% !important;
    padding: 0.4rem !important;
  }
  
  .caption-title,
  .elegant-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem) !important;
    margin-bottom: 0.3rem !important;
  }
  
  .elegant-title-secondary {
    font-size: clamp(1rem, 5vw, 1.5rem) !important;
    margin-bottom: 0.3rem !important;
  }
  
  .caption-subtitle,
  .caption-subtitle-elegant {
    font-size: clamp(0.7rem, 2vw, 0.85rem) !important;
    margin-bottom: 0.6rem !important;
    line-height: 1.3 !important;
  }
  
  .caption-badge {
    font-size: 0.65rem !important;
    padding: 0.25rem 0.6rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .caption-buttons {
    margin: 0.6rem 0 !important;
  }
  
  .caption-buttons .btn {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.75rem !important;
    max-width: 180px !important;
  }
  
  .feature-item,
  .feature-item-elegant {
    font-size: 0.75rem !important;
    padding: 0.3rem 0.6rem !important;
  }
  
  .quality-badges,
  .quality-badges-centered {
    gap: 0.4rem !important;
  }
  
  .badge-elegant {
    font-size: 0.7rem !important;
    padding: 0.3rem 0.6rem !important;
  }
  
  .caption-stats {
    margin-top: 0.6rem !important;
  }
}

/* Telas muito pequenas (menos de 400px) */
@media (max-width: 399.98px) {
  .modern-carousel {
    height: 75vh !important;
    min-height: 350px !important;
  }
  
  .carousel-image-container,
  .carousel-img {
    height: 75vh !important;
    min-height: 350px !important;
  }
  
  .modern-caption {
    width: 95% !important;
    padding: 0.3rem !important;
  }
  
  .caption-title,
  .elegant-title {
    font-size: clamp(1rem, 7vw, 1.5rem) !important;
    margin-bottom: 0.2rem !important;
  }
  
  .elegant-title-secondary {
    font-size: clamp(0.9rem, 6vw, 1.3rem) !important;
    margin-bottom: 0.2rem !important;
  }
  
  .caption-subtitle,
  .caption-subtitle-elegant {
    font-size: clamp(0.65rem, 2.2vw, 0.8rem) !important;
    margin-bottom: 0.5rem !important;
  }
  
  .caption-buttons .btn {
    padding: 0.35rem 0.7rem !important;
    font-size: 0.7rem !important;
    max-width: 160px !important;
  }
  
  .caption-stats {
    margin-top: 0.5rem !important;
  }
  
  .stat-number {
    font-size: clamp(0.9rem, 4vw, 1.2rem) !important;
  }
  
  .stat-label {
    font-size: clamp(0.55rem, 1.8vw, 0.7rem) !important;
  }
}

/* ========================================
   OVERLAY MELHORADO PARA CONTRASTE
   ======================================== */

/* Overlay mais escuro em telas pequenas para melhor legibilidade */
@media (max-width: 767.98px) {
  .carousel-overlay {
    /* AJUSTAR: Overlay mais escuro em mobile */
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.5) 100%
    ) !important;
  }
  
  /* Sombra mais forte nos textos em mobile */
  .caption-title,
  .elegant-title,
  .elegant-title-secondary {
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9) !important;
  }
  
  .caption-subtitle,
  .caption-subtitle-elegant {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8) !important;
  }
}

/* ========================================
   INDICADORES MODERNOS - AJUSTE AQUI
   ======================================== */

.modern-indicators {
  /* AJUSTAR: Posição dos indicadores */
  bottom: 25px !important;
  z-index: 20 !important;
}

.modern-indicators button {
  /* AJUSTAR: Tamanho dos indicadores */
  width: 50px !important;
  height: 5px !important;
  border-radius: 3px !important;
  background: rgba(255, 255, 255, 0.4) !important;
  border: none !important;
  margin: 0 4px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

.modern-indicators button.active {
  background: rgba(255, 255, 255, 0.8) !important;
}

.indicator-progress {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  height: 100% !important;
  width: 0 !important;
  /* AJUSTAR: Cor da barra de progresso */
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4) !important;
  border-radius: 3px !important;
  transition: width 0.3s ease !important;
}

.modern-indicators button.active .indicator-progress {
  width: 100% !important;
  /* AJUSTAR: Duração da animação (deve coincidir com data-bs-interval) */
  animation: progressBar 5s linear infinite !important;
}

@keyframes progressBar {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ========================================
   CONTROLES DE NAVEGAÇÃO - AJUSTE AQUI
   ======================================== */

.modern-control {
  /* AJUSTAR: Tamanho dos controles */
  width: 55px !important;
  height: 55px !important;
  background: rgba(255, 255, 255, 0.2)
  !important;
  backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  color: white !important;
  transition: all 0.3s ease !important;
  z-index: 20 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.modern-control:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
  color: white !important;
}

.carousel-control-prev {
  /* AJUSTAR: Posição do controle anterior */
  left: 25px !important;
}

.carousel-control-next {
  /* AJUSTAR: Posição do controle próximo */
  right: 25px !important;
}

.control-icon {
  /* AJUSTAR: Tamanho do ícone dos controles */
  font-size: 1.2rem !important;
  color: white !important;
}

/* ========================================
   BOTÃO PLAY/PAUSE - AJUSTE AQUI
   ======================================== */

.carousel-play-pause {
  position: absolute !important;
  /* AJUSTAR: Posição do botão play/pause */
  bottom: 25px !important;
  right: 25px !important;
  width: 45px !important;
  height: 45px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  color: white !important;
  font-size: 0.9rem !important;
  transition: all 0.3s ease !important;
  z-index: 20 !important;
  cursor: pointer !important;
}

.carousel-play-pause:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
}

/* ========================================
   SCROLL INDICATOR - AJUSTE AQUI
   ======================================== */

.scroll-indicator {
  position: absolute !important;
  /* AJUSTAR: Posição do indicador de scroll */
  bottom: 15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 20 !important;
}

.scroll-down {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  color: white !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.scroll-down:hover {
  /* AJUSTAR: Cor do hover do scroll indicator */
  color: #4ecdc4 !important;
  transform: translateY(-5px) !important;
}

.scroll-text {
  /* AJUSTAR: Tamanho do texto do scroll */
  font-size: 0.8rem !important;
  margin-bottom: 8px !important;
  opacity: 0.9 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 500 !important;
}

.scroll-arrow {
  /* AJUSTAR: Tamanho da seta do scroll */
  width: 28px !important;
  height: 28px !important;
  border: 2px solid currentColor !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  /* AJUSTAR: Velocidade da animação bounce */
  animation: bounce 2s infinite !important;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* ========================================
   GRADIENTES PARA BADGES - AJUSTE CORES AQUI
   ======================================== */

.bg-gradient-success {
  /* AJUSTAR: Gradiente verde */
  background: linear-gradient(45deg, #28a745, #20c997) !important;
}

.bg-gradient-info {
  /* AJUSTAR: Gradiente azul */
  background: linear-gradient(45deg, #17a2b8, #6f42c1) !important;
}

.bg-gradient-warning {
  /* AJUSTAR: Gradiente amarelo */
  background: linear-gradient(45deg, #ffc107, #fd7e14) !important;
}

/* ========================================
   ANIMAÇÕES DE ENTRADA - AJUSTE TIMING AQUI
   ======================================== */

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Aplicar animações aos elementos do carousel ativo */
.carousel-item.active .caption-badge {
  /* AJUSTAR: Timing da animação do badge */
  animation: fadeInUp 0.8s ease-out 0.2s both !important;
}

.carousel-item.active .caption-title,
.carousel-item.active .elegant-title,
.carousel-item.active .elegant-title-secondary {
  /* AJUSTAR: Timing da animação do título */
  animation: fadeInUp 1s ease-out 0.4s both !important;
}

.carousel-item.active .caption-subtitle,
.carousel-item.active .caption-subtitle-elegant {
  /* AJUSTAR: Timing da animação do subtítulo */
  animation: fadeInUp 0.8s ease-out 0.6s both !important;
}

.carousel-item.active .caption-buttons {
  /* AJUSTAR: Timing da animação dos botões */
  animation: fadeInUp 0.8s ease-out 0.8s both !important;
}

.carousel-item.active .feature-list,
.carousel-item.active .feature-list-centered {
  /* AJUSTAR: Timing da animação da lista de features */
  animation: fadeInLeft 0.8s ease-out 0.8s both !important;
}

.carousel-item.active .quality-badges,
.carousel-item.active .quality-badges-centered {
  /* AJUSTAR: Timing da animação dos badges de qualidade */
  animation: fadeInRight 0.8s ease-out 0.8s both !important;
}

.carousel-item.active .caption-stats {
  /* AJUSTAR: Timing da animação das estatísticas */
  animation: fadeInUp 0.8s ease-out 1s both !important;
}

/* ========================================
   EFEITO PARALLAX - AJUSTE AQUI
   ======================================== */

.carousel-item.active .carousel-img {
  /* AJUSTAR: Duração e intensidade do zoom parallax */
  animation: parallaxZoom 8s ease-out forwards;
}

@keyframes parallaxZoom {
  0% {
    transform: scale(1);
  }
  100% {
    /* AJUSTAR: Intensidade do zoom (1.05 = 5% de zoom) */
    transform: scale(1.05);
  }
}

/* ========================================
   TRANSIÇÕES ENTRE SLIDES - AJUSTE AQUI
   ======================================== */

.carousel-item {
  /* AJUSTAR: Velocidade da transição entre slides */
  transition: transform 0.8s ease-in-out !important;
}

.carousel-item-next,
.carousel-item-prev {
  display: block !important;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%) !important;
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%) !important;
}

/* ========================================
   RESPONSIVIDADE DOS CONTROLES
   ======================================== */

/* Tablets */
@media (max-width: 991.98px) {
  .modern-control {
    width: 50px !important;
    height: 50px !important;
  }
  
  .carousel-control-prev {
    left: 20px !important;
  }
  
  .carousel-control-next {
    right: 20px !important;
  }
  
  .carousel-play-pause {
    bottom: 20px !important;
    right: 20px !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 0.8rem !important;
  }
  
  .modern-indicators {
    bottom: 20px !important;
  }
  
  .modern-indicators button {
    width: 40px !important;
    height: 4px !important;
    margin: 0 3px !important;
  }
}

/* Smartphones */
@media (max-width: 767.98px) {
  .scroll-indicator {
    /* AJUSTAR: Ocultar scroll indicator em mobile se necessário */
    display: none !important;
  }
  
  .carousel-play-pause {
    bottom: 15px !important;
    right: 15px !important;
    width: 35px !important;
    height: 35px !important;
    font-size: 0.75rem !important;
  }
  
  .modern-control {
    width: 45px !important;
    height: 45px !important;
  }
  
  .carousel-control-prev {
    left: 15px !important;
  }
  
  .carousel-control-next {
    right: 15px !important;
  }
  
  .control-icon {
    font-size: 1rem !important;
  }
}

/* Smartphones pequenos */
@media (max-width: 575.98px) {
  .modern-indicators button {
    width: 30px !important;
    height: 3px !important;
    margin: 0 2px !important;
  }
  
  .modern-control {
    width: 40px !important;
    height: 40px !important;
  }
  
  .control-icon {
    font-size: 0.9rem !important;
  }
  
  .carousel-play-pause {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.7rem !important;
  }
}

/* ========================================
   MELHORIAS DE ACESSIBILIDADE
   ======================================== */

/* Garantir que todos os textos sejam visíveis */
.carousel-caption * {
  color: white !important;
  z-index: 15 !important;
  position: relative !important;
}

/* Melhorar contraste em dispositivos pequenos */
@media (max-width: 480px) {
  .carousel-overlay {
    /* AJUSTAR: Overlay ainda mais escuro para telas muito pequenas */
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.6) 100%
    ) !important;
  }
}

/* ========================================
   CORREÇÕES ESPECÍFICAS PARA O GRADIENTE
   ======================================== */

/* Garantir que o gradiente arco-íris seja sempre vibrante */
.text-gradient,
.text-gradient-elegant {
  color: #1a1a8a !important; /* Azul escuro com leve suavidade */
  font-weight: 700 !important;
  font-family: 'Playfair Display', serif !important; /* Elegante e moderno */
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3) !important;
  letter-spacing: 0.5px !important;
  font-size: 2rem !important;
  background: linear-gradient(90deg, #1a1a8a, #2f5c9c) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1rem;
  transition: all 0.3s ease-in-out;
}



/* ========================================
   OTIMIZAÇÕES DE PERFORMANCE
   ======================================== */

/* Otimizar renderização */
.modern-carousel,
.carousel-item,
.carousel-img {
  will-change: transform !important;
  transform: translateZ(0) !important;
}

/* Suavizar animações em dispositivos com menos poder de processamento */
@media (prefers-reduced-motion: reduce) {
  .carousel-item.active .carousel-img {
    animation: none !important;
  }
  
  .carousel-item.active .caption-badge,
  .carousel-item.active .caption-title,
  .carousel-item.active .elegant-title,
  .carousel-item.active .elegant-title-secondary,
  .carousel-item.active .caption-subtitle,
  .carousel-item.active .caption-subtitle-elegant,
  .carousel-item.active .caption-buttons,
  .carousel-item.active .feature-list,
  .carousel-item.active .feature-list-centered,
  .carousel-item.active .quality-badges,
  .carousel-item.active .quality-badges-centered,
  .carousel-item.active .caption-stats {
    animation: none !important;
  }
  
  .text-gradient,
  .text-gradient-elegant {
    animation: none !important;
  }
  
  .scroll-arrow {
    animation: none !important;
  }
}

/* ========================================
   CORREÇÃO FINAL PARA ELIMINAR SCROLL INTERNO
   ======================================== */

/* Garantir que NUNCA apareça scroll interno */
.modern-caption,
.modern-caption *,
.carousel-caption,
.carousel-caption * {
  overflow: visible !important;
  max-height: none !important;
  height: auto !important;
}

/* Forçar que o conteúdo se ajuste à tela */
.modern-caption .container,
.modern-caption

Copy

Apply

carrossel.css

continue


No relevant context found
.row,
.modern-caption .col-lg-8,
.modern-caption .col-lg-6,
.modern-caption .col-lg-10,
.modern-caption .col-xl-8 {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

/* Garantir que todos os elementos filhos se ajustem */
.modern-caption > *,
.modern-caption .container > *,
.modern-caption .row > *,
.modern-caption [class*="col-"] > * {
  max-height: none !important;
  overflow: visible !important;
}

/* ========================================
   AJUSTES FINAIS PARA DIFERENTES ALTURAS DE TELA
   ======================================== */

/* Para telas muito altas (monitores ultrawide) */
@media (min-height: 900px) {
  .modern-carousel {
    height: 100vh !important;
    min-height: 700px !important;
  }
  
  .carousel-image-container,
  .carousel-img {
    height: 100vh !important;
    min-height: 700px !important;
  }
}

/* Para telas de altura média */
@media (min-height: 600px) and (max-height: 899px) {
  .modern-carousel {
    height: 95vh !important;
    min-height: 550px !important;
  }
  
  .carousel-image-container,
  .carousel-img {
    height: 95vh !important;
    min-height: 550px !important;
  }
}

/* Para telas baixas (netbooks, tablets em landscape) */
@media (max-height: 599px) {
  .modern-carousel {
    height: 90vh !important;
    min-height: 400px !important;
  }
  
  .carousel-image-container,
  .carousel-img {
    height: 90vh !important;
    min-height: 400px !important;
  }
  
  /* Reduzir ainda mais os espaçamentos em telas baixas */
  .caption-title,
  .elegant-title {
    font-size: clamp(1.2rem, 4vw, 2rem) !important;
    margin-bottom: 0.3rem !important;
  }
  
  .elegant-title-secondary {
    font-size: clamp(1rem, 3vw, 1.6rem) !important;
    margin-bottom: 0.3rem !important;
  }
  
  .caption-subtitle,
  .caption-subtitle-elegant {
    font-size: clamp(0.7rem, 1.2vw, 0.85rem) !important;
    margin-bottom: 0.5rem !important;
  }
  
  .caption-badge {
    font-size: 0.65rem !important;
    padding: 0.25rem 0.6rem !important;
    margin-bottom: 0.4rem !important;
  }
  
  .caption-buttons {
    margin: 0.5rem 0 !important;
  }
  
  .caption-buttons .btn {
    padding: 0.35rem 0.8rem !important;
    font-size: 0.75rem !important;
  }
  
  .caption-stats {
    margin-top: 0.5rem !important;
  }
  
  .stat-number {
    font-size: clamp(0.9rem, 2vw, 1.2rem) !important;
  }
  
  .stat-label {
    font-size: clamp(0.55rem, 1vw, 0.7rem) !important;
  }
}

/* ========================================
   CORREÇÕES ESPECÍFICAS PARA iOS SAFARI
   ======================================== */

/* Corrigir problemas de viewport em iOS */
@supports (-webkit-touch-callout: none) {
  .modern-carousel {
    /* Usar altura fixa em iOS para evitar problemas com 100vh */
    height: calc(100vh - env(safe-area-inset-top)) !important;
  }
  
  .carousel-image-container,
  .carousel-img {
    height: calc(100vh - env(safe-area-inset-top)) !important;
  }
}

/* ========================================
   MELHORIAS PARA MODO ESCURO
   ======================================== */

@media (prefers-color-scheme: dark) {
  .carousel-overlay {
    /* Overlay ligeiramente diferente para modo escuro */
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0.3) 100%
    ) !important;
  }
  
  .modern-control,
  .carousel-play-pause {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
  }
  
  .modern-control:hover,
  .carousel-play-pause:hover {
    background: rgba(255, 255, 255, 0.25) !important;
  }
}

/* ========================================
   CORREÇÕES PARA IMPRESSÃO
   ======================================== */

@media print {
  .modern-carousel {
    height: auto !important;
    min-height: auto !important;
    page-break-inside: avoid !important;
  }
  
  .carousel-image-container,
  .carousel-img {
    height: 400px !important;
    min-height: auto !important;
  }
  
  .modern-control,
  .carousel-play-pause,
  .modern-indicators,
  .scroll-indicator {
    display: none !important;
  }
  
  .carousel-overlay {
    background: rgba(0, 0, 0, 0.2) !important;
  }
  
  .modern-caption {
    position: relative !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.9) !important;
    color: black !important;
    padding: 2rem !important;
    margin-top: -100px !important;
  }
  
  .modern-caption * {
    color: black !important;
    text-shadow: none !important;
  }
}

/* ========================================
   ANIMAÇÕES ADICIONAIS PARA ELEMENTOS ESPECÍFICOS
   ======================================== */

/* Animação para os badges de qualidade */
.quality-badges .badge-elegant,
.quality-badges-centered .badge-elegant {
  animation: fadeInScale 0.6s ease-out forwards;
  opacity: 0;
  transform: scale(0.8);
}

.carousel-item.active .quality-badges .badge-elegant:nth-child(1),
.carousel-item.active .quality-badges-centered .badge-elegant:nth-child(1) {
  animation-delay: 1s;
}

.carousel-item.active .quality-badges .badge-elegant:nth-child(2),
.carousel-item.active .quality-badges-centered .badge-elegant:nth-child(2) {
  animation-delay: 1.2s;
}

.carousel-item.active .quality-badges .badge-elegant:nth-child(3),
.carousel-item.active .quality-badges-centered .badge-elegant:nth-child(3) {
  animation-delay: 1.4s;
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animação para os itens de feature */
.feature-list .feature-item,
.feature-list-centered .feature-item-elegant {
  animation: slideInLeft 0.6s ease-out forwards;
  opacity: 0;
  transform: translateX(-30px);
}

.carousel-item.active .feature-list .feature-item:nth-child(1),
.carousel-item.active .feature-list-centered .feature-item-elegant:nth-child(1) {
  animation-delay: 0.8s;
}

.carousel-item.active .feature-list .feature-item:nth-child(2),
.carousel-item.active .feature-list-centered .feature-item-elegant:nth-child(2) {
  animation-delay: 1s;
}

.carousel-item.active .feature-list .feature-item:nth-child(3),
.carousel-item.active .feature-list-centered .feature-item-elegant:nth-child(3) {
  animation-delay: 1.2s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

