/* CSS custom do site */

/* Force responsive images to maintain aspect ratio */
img {
  height: auto;
  max-width: 100%;
}

/* Ensure startup tab images maintain proper aspect ratio */
.startup_tab_img img {
  height: auto !important;
  max-width: 100%;
}

/* Template da página de leads */
.bg-white-header {
  background-color: rgba(255, 255, 255);
}

.card-white-alpha {
  background-color: rgba(255, 255, 255, 0.70);
  border-radius: 4px;
  padding: 6rem 3%;
}

.text-justify {
  text-align: justify !important;
}

.footer_about {
  margin-right: 50px;
}

/* =============================================================
   Página de políticas de privacidade e termos de uso e adesão
   ============================================================= */

.anchor_target {
  scroll-margin-top: 110px; /* ajuste para a altura do header fixo */
}

.mt_20 {
  margin-top: 20px;
}

/* ========================================
   Welcome Banner Section - Custom Design
   ======================================== */

/* Main section with blue gradient background */
.welcome_banner_section {
  width: 100%;
  background: linear-gradient(-120deg, rgb(134, 71, 249) 0%, rgb(78, 145, 193) 64%, rgb(77 60 213) 100%);
  position: relative;
  overflow: visible;
  padding-top: 120px;
  padding-bottom: 0;
}

/* Content wrapper */
.welcome_banner_section .welcome_content {
  text-align: center;
  color: #fff;
  padding-bottom: 60px;
  position: relative;
  z-index: 10;
}

/* Title styling - replicating .startup_content_three h2 */
.welcome_banner_section .welcome_content h1 {
  font-size: 50px;
  color: #fff;
  font-weight: 300;
  line-height: 60px;
  margin-bottom: 30px;
}

/* Bold text inside title */
.welcome_banner_section .welcome_content h1 span,
.welcome_banner_section .welcome_content h1 strong,
.welcome_banner_section .welcome_content h1 b {
  font-weight: 700;
}

/* Subtitle styling - replicating .startup_content_three p */
.welcome_banner_section .welcome_content p {
  font-size: 18px;
  color: #fff;
  line-height: 30px;
  margin-bottom: 50px;
  opacity: 0.95;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons container */
.welcome_banner_section .welcome_buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Button base styling */
.welcome_banner_section .welcome_btn {
  display: inline-block;
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

/* Primary button (transparent with white border) */
.welcome_banner_section .welcome_btn_primary {
  background: transparent;
  color: #fff;
}

.welcome_banner_section .welcome_btn_primary:hover {
  background: #fff;
  color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Secondary button (white background) */
.welcome_banner_section .welcome_btn_secondary {
  background: #fff;
  color: #667eea;
  border-color: #fff;
}

.welcome_banner_section .welcome_btn_secondary:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.welcome_banner_section .welcome_btn i {
  margin-right: 8px;
}

/* Image wrapper - positioned to overlap next section */
.welcome_banner_section .welcome_image_wrapper {
  position: relative;
  width: 100%;
  /* Negative margin to push image down into next section */
  margin-bottom: -70px;
}

/* Carousel container */
.welcome_banner_section .welcome_carousel {
  position: relative;
  width: 100%;
}

/* Carousel track - maintains aspect ratio */
.welcome_banner_section .carousel_track {
  position: relative;
  width: 100%;
  /* Aspect ratio padding trick: 56.25% = 9/16 for 16:9 images */
  padding-bottom: 56.25%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Carousel slides - all absolutely positioned and overlapping */
.welcome_banner_section .carousel_slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

/* Active slide is visible */
.welcome_banner_section .carousel_slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Image styling */
.welcome_banner_section .welcome_image {
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
  display: block;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #4d4cd1;
  border-radius: 12px;
}

/* Carousel indicators */
.welcome_banner_section .carousel_indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  pointer-events: auto;
}

.welcome_banner_section .carousel_indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(77, 60, 213, 0.5);
  border: 2px solid #4d3cd5;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.welcome_banner_section .carousel_indicators .indicator:hover {
  background: rgba(77, 60, 213, 0.7);
  transform: scale(1.1);
}

.welcome_banner_section .carousel_indicators .indicator.active {
  background: #4d3cd5;
  box-shadow: 0 0 8px rgba(77, 60, 213, 0.6);
}

/* Add top padding to next section to accommodate image overlap */
.prototype_service_info {
  padding-top: 200px;
}

/* ========================================
   Responsive Media Queries
   ======================================== */

/* Tablets and smaller desktops (1024px and below) */
@media (max-width: 1024px) {
  .welcome_banner_section {
    padding-top: 100px;
  }
  
  .welcome_banner_section .welcome_content h1 {
    font-size: 40px;
  }
  
  .welcome_banner_section .welcome_content p {
    font-size: 18px;
    padding: 0 20px;
  }
  
  .welcome_banner_section .welcome_image_wrapper {
    margin-bottom: -70px;
  }
  
  .prototype_service_info {
    padding-top: 170px;
  }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
  .welcome_banner_section {
    padding-top: 80px;
  }
  
  .welcome_banner_section .welcome_content {
    padding-bottom: 40px;
  }
  
  .welcome_banner_section .welcome_content h1 {
    font-size: 32px;
  }
  
  .welcome_banner_section .welcome_content p {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .welcome_banner_section .welcome_buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .welcome_banner_section .welcome_btn {
    padding: 14px 40px;
    font-size: 15px;
    width: 100%;
    max-width: 300px;
  }
  
  .welcome_banner_section .welcome_image_wrapper {
    margin-bottom: -50px;
  }
  
  .prototype_service_info {
    padding-top: 140px;
  }
}

/* Mobile devices (576px and below) */
@media (max-width: 576px) {
  .welcome_banner_section {
    /* padding-top: 60px; */
  }
  
  .welcome_banner_section .welcome_content {
    padding-bottom: 30px;
  }
  
  .welcome_banner_section .welcome_content h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  
  .welcome_banner_section .welcome_content p {
    font-size: 15px;
    padding: 0 15px;
  }
  
  .welcome_banner_section .welcome_btn {
    padding: 12px 32px;
    font-size: 14px;
  }
  
  .welcome_banner_section .welcome_image_wrapper {
    margin-bottom: -50px;
  }
  
  .prototype_service_info {
    padding-top: 120px;
  }
}

/* Small mobile devices (400px and below) */
@media (max-width: 400px) {
  .welcome_banner_section .welcome_content h1 {
    font-size: 24px;
  }
  
  .welcome_banner_section .welcome_content p {
    font-size: 14px;
  }
  
  .welcome_banner_section .welcome_btn {
    padding: 10px 28px;
    font-size: 13px;
  }
}
