:root {
    --primary-color: #2780C3;
    --secondary-color: #002346;
    --tertiary-color: #77cfe9;
    --accent-color: #ffc107;
    --text-color: #002346;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
    --white: #ffffff;
    --sustainability: #94c02d;
}
* {
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
  width: 100%;
}
body {
    font-family: 'DINNextLTPro', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}
.container {
  max-width: 100%;
  width: 100%;
  padding-left: 7.5vw;
  padding-right: 7.5vw;
}
.container-fluid {
  max-width: 100vw;
  width: 100%;
  padding: 0;
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
}
hr {
    color: var(--primary-color);
    height: 3px;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}
.section-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--primary-color);
}
.section-text {
    font-size: 0.7rem;
    line-height: 1.6;
}
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 400;
}
.btn-primary:hover {
    filter: brightness(1.25);
}
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 400;
}
.btn-outline-primary:hover {
    filter: brightness(1.25);
}
.btn-outline-white {
    color: #fff;
    border-color: #fff;
    padding: 0.5rem 0rem;
    border-radius: 30px;
    font-weight: 400;
	font-size: 1rem;
}
.btn-outline-white:hover {
    color: var(--tertiary-color);
    border-color: var(--tertiary-color);
}
.btn-anchor {
    background-color: var(--secondary-color);
}
header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar {
    padding: 1rem 0;
    backdrop-filter: blur(20px);
    background-image: url("../img/banner/menu_transparente.png");
    max-width: 100vw;
}
.navbar-brand img {
    height: 30px;
}
.navbar-nav .nav-link {
    font-weight: 300;
	font-size: 14px;
    color: #fff;
    padding: 0.3rem 1rem;
    margin: 0 0.25rem;
}
.navbar-nav .nav-link:hover {
    color: var(--tertiary-color);
}
.navbar-toggler {
    border: none;
}
.navbar-toggler-icon-fa {
    color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    padding: 8px;
}
section, 
#exalunos,
.footer {
    min-width: 100vw;
}
.main-banner {
    height: 119vh;
    position: relative;
    display: flex;
    align-items: center;
    top: 0;
}
.banner-content {
    background-image: url("../img/banner/banner-alemdos100.png");
    background-size: cover;
    background-position: 60%;
    width: 100vw;
}
.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.text-tertiary {
    color: var(--tertiary-color);
}
.text-justify {
    text-align: justify;
}
.video-section {
    padding: 5rem 0;
}
.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.play-button i {
    color: var(--white);
    font-size: 2rem;
}
.play-button:hover {
    filter: brightness(1.25);
    transform: translate(-50%, -50%) scale(1.1);
}
.timeline-section {
  padding: 15rem 0; /* Aumenta a altura da Ã¡rea azul */
  background-color: var(--secondary-color);
  overflow: visible; /* importante para nÃ£o cortar os cards ao crescerem */
  position: relative; /* necessÃ¡rio para que o overflow funcione corretamente */
  z-index: 0;
	}
.horizontal-divider {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color); 
}
.horizontal-divider-white {
    width: 30%;
    height: 2px;
    background-color: #fff; 
}
.decade-navigation {
    position: relative;
    padding: 2rem 0;
}
.decade-btn {
    background: none;
    border: none;
    font-weight: 400;
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 2;
}
.decade-btn.active {
    color: var(--primary-color);
    font-size: 1.3rem;
}
.decade-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ddd;
    z-index: 1;
}
.timeline-carousel {
  overflow: visible !important; /* Permite que os cards transbordem ao dar zoom */
  position: relative;
  z-index: 0;
  padding-bottom: 5rem; /* EspaÃ§o extra para a sombra */
}
.timeline-card {
  position: relative;
  background-color: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 0rem; /* espaÃ§o suficiente para a seta e a year-tag */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height:inherit;
  transition: all 0.3s ease;
  z-index: 2;
}

.timeline-card::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--white); /* cor da caixinha */
  z-index: 2;
}

.timeline-card:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 60px rgba(0, 0, 15, 0.9);
  z-index: 10;
}

/* Aqui estÃ¡ o segredo para padronizar as imagens */
.timeline-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.timeline-year {
    background-color: var(--primary-color);
    color: #fff;
    width: 6rem;
    height: 2rem;
    border-radius: 2rem;
    z-index: 1;
}
.horizontal-line {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 0px;
}
.anchor-wrapper {
    background-color: var(--primary-color);
    width: fit-content;
    border-radius: 2rem;
}
.sustainability-banner {
    background-color: var(--sustainability);
    background-image: url("../img/bom-para-o-planeta/background.png");
    background-size: cover;
    background-position: center;
    color: var(--white);
}
.sustainability-image {
    height: 48rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    pointer-events: none;
}
.quote-container {
    padding: 2rem;
}
.quote-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}
.stats-container {
    padding: 2rem;
    border-radius: 10px;
}
.stats-container h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.stats-container p {
    font-size: 1.2rem;
    line-height: 1.6;
}
.exalunos-section {
    background-color: var(--secondary-color);
    background-image: url("../img/ex-alunos/background.png");
    background-size: cover;
    background-position: center;
    color: var(--white);
    min-height: 36rem;
}
.quote-container {
    padding: 2rem;
}
.quote-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
}
.stats-container {
    padding: 2rem;
    border-radius: 10px;
}
.stats-container h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}
.stats-container p {
    font-size: 0.7rem;
    line-height: 1.6;
}
.bonja-section {
    padding: 5rem 0;
    background-color: var(--secondary-color);
    background-image: url("../img/instagram/background.png");
    background-size: cover;
    background-position: center;
    min-height: 76rem;
}
.instagram-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    min-height: max-content;
}
.logo-insta-bonja-wrapper {
    height: 40px;
    width: 40px;
    background-color: var(--tertiary-color);
    border-radius: 24px;
}
.img-logo-instagram {
    border-radius: 24px;
}
.instagram-post {
    height: 212px;
    width: 100%;
}
.img-instagram {
    height: 212px;
    border-radius: 16px;
    object-fit: cover;
}
.instagram-actions {
    font-size: 1.5rem;
    color: #ccc;
}
.color-red {
    font-size: 1.5rem;
    color: #f00;
}
.instagram-info {
    padding: 1.5rem;
}
.instagram-info h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}
.instagram-meta {
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 0.9rem;
    margin-top: 1rem;
}
.collection-section {
    background-color: var(--primary-color);
    padding: 5rem 0;
}
.product-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    height: 320px;
    width: 100%;
    text-align: center;
    padding-bottom: 1.5rem;
}
.product-card img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}
.product-card h4 {
    font-size: 1.2rem;
    padding: 0 1rem;
}
.brands-section {
    padding: 5rem 0;
}
.brands-grid {
    margin-top: 3rem;
}
.brand-item {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--white);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* garante que nada vaze para fora */
}
.agenda-section {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}
.event-card {
    background-color: var(--secondary-color);
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 384px;
}
.event-card-img {
    height: 50%;
    background-color: var(--secondary-color);
    border-radius: 16px 16px 0 0;
    border: 2px solid var(--primary-color);
}
.event-date {
    background-color: var(--primary-color);
    font-size: 1.3rem;
}
.event-title {
    border: 2px solid var(--primary-color);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    font-size: 1.5rem;
    border-radius: 0 0 16px 16px;
}
.event-card p {
    color: #777;
}
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5rem 0 2rem;
}
.footer-logo {
    margin-bottom: 1.5rem;
}
.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--accent-color);
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}
.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}
.copyright {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    color: var(--tertiary-color);
    border: 1px solid var(--tertiary-color);
}
.carousel-control-prev {
    left: -60px;
}
.carousel-control-next {
    right: -60px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 40px;
    height: 20px;
}
.control-primary {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
}
.header-page-agenda {
    min-height: 20vh;
    background:  var(--secondary-color);
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}
.content-page-agenda {
    min-height: 20vh;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
}
.image-page-agenda {
    width: 32rem;
    height: 24rem;
    background-color: var(--tertiary-color);
    border-radius: 24px;
}
.w-15 {
    width: 15%;
}
@media (max-width: 1200px) {
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1.3rem;
    }
    .banner-content h1 {
        font-size: 3rem;
    }
}
@media (max-width: 992px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }
    .quote-container h2 {
        font-size: 2rem;
    }
    .stats-container h3 {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .main-banner {
        height: 30vh;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 1.2rem;
    }
    .banner-content h1 {
        font-size: 2rem;
    }
    .horizontal-line {
        display: none;
    }
    .timeline-card { 
        margin-bottom: -1.5rem;
    }
    .decade-btn {
        font-size: 1.2rem;
    }
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    .btn-anchor {
        width: 100%;
    }
    .sustainability-image {
        height: 100%;
        margin-top: -20%;
        margin-bottom: -20%;
        pointer-events: none;
		
    }
	.zoom-hover {
  display: inline-block;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.zoom-hover img.zoomable-img {
  transition: transform 0.4s ease-in-out;
  display: block;
  max-width: 100%;
  height: auto;
}

.zoom-hover:hover img.zoomable-img {
  transform: scale(1.08);
}
    .exalunos-section {
        min-height: unset !important;
        height: 55vh;
        background-position: calc(70%);
    }
    .text-shadow {
        text-shadow: 1px 1px 2px #000000a1;
    }
    .bonja-section {
        background-position: left;
        min-height: max-content;
    }
    .instagram-card {
        min-height: max-content;
    }
    .footer {
        text-align: center;
    }
    .social-links {
        justify-content: center;
        margin-bottom: 2rem;
    }
}
@media (max-width: 576px) {
    .banner-content h1 {
        font-size: 1.8rem;
    }
    .decade-navigation {
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    .decade-btn {
        padding: 0.5rem 0.25rem;
        font-size: 1.1rem;
    }
}

/* Estilos aplicados Ã  coluna de texto apÃ³s o vÃ­deo */
.col-title {
    font-size: 2.25rem !important;
    color: #2780c3;
    font-weight: 300;
    text-align: left;
}

.col-body {
    font-size: 1rem;
    color: #052c65;
    font-weight: 400;
    text-align: left;
}
/* Garantir que os pais do card nÃ£o cortem o hover */
.timeline-carousel,
.carousel-inner,
.carousel-item,
.row,
.col,
.col-card-timeline {
  overflow: visible !important;
  position: relative;
  z-index: 1;
}
/* === NOVA ESTRUTURA CORRIGIDA PARA A TIMELINE === */
.timeline-card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}

.timeline-card {
  position: relative;
  background-color: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 100%;
  z-index: 2;
}

.timeline-card::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--white);
  z-index: 2;
}

.timeline-card:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 60px rgba(0, 0, 15, 0.9);
  z-index: 10;
}

/* TAG COM O ANO */
.year-tag {
  margin-top: 12px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  z-index: 1;
  position: relative;
}

/* LINHA AZUL AO FUNDO (atrÃ¡s das tags de ano) */
.timeline-carousel::before {
  content: "";
  position: relative;
  top: 100%; /* inicia exatamente apÃ³s os cards */
  left: 0;
  transform: translateY(-40px); /* sobe a linha para trÃ¡s das year-tags */
  width: 100%;
  height: 4px;
  background-color: #fff;
  z-index: 0;
}

/* Garante visibilidade e posiÃ§Ã£o correta */
.timeline-carousel {
  position: center;
  overflow: visible;
}
/* Linha azul */
.carousel-container::before {
  content: "";
  position: relative;
  bottom:auto;
  left: 0px;
  height: 2px;
  width: 200%;
  background-color: var(--primary-color);
  z-index: 0;
}
.carousel-container {
  overflow: visible !important;
  position: relative;
  z-index: 0;
}
.carousel-wrapper {
  overflow: visible !important;
  position: relative;
  z-index: 0;
}
.carousel-track {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  overflow: visible !important;
  align-items: flex-start;
  padding-bottom: 80px; /* espaÃ§o para year-tags e linha */
}
.video-hover-effect {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.65);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-hover-effect:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.80);
}

/* trazendo definicoes do front para arquivo especifico */ 
@font-face {
    font-family: 'DINNextLTPro';
    src: url('fonts/DINNextLTPro-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'DINNextLTPro';
    src: url('fonts/DINNextLTPro-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'DINNextLTPro';
    src: url('fonts/DINNextLTPro-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'DINNextLTPro';
    src: url('fonts/DINNextLTPro-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'DINNextLTPro';
    src: url('fonts/DINNextLTPro-Heavy.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'DINNextLTPro';
    src: url('fonts/DINNextLTPro-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

/* Aplicar globalmente */
body, html, h1, h2, h3, h4, h5, h6, p, a, span, button, nav, ul, ol, li, footer, header, input, select, textarea, label, div, section {
    font-family: 'DINNextLTPro', sans-serif;
}

nav, nav a, nav li, .navbar, .navbar a {
    font-family: 'DINNextLTPro', sans-serif;
    font-weight: 300 !important;
    /* Light */
    font-style: normal !important;
}

nav img, footer img {
    transition: transform 0.3s ease;
}

nav img:hover, footer img:hover {
    transform: scale(1.05);
}

/* Zoom em todas as logos */
img.logo, .logo img, footer img, nav img, img.logo:hover, .logo img:hover, footer img:hover, nav img:hover, .carousel-item img:hover, .card img:hover {
    transform: scale(1.05);
}

.main-banner {
    background-image: url('assets/img/banner/banner-alemdos100.png');
    background-size: cover;
    background-position: 60%;
    background-repeat: no-repeat;
}

.carousel-control-next, .carousel-control-prev {
    cursor: pointer;
}

.carousel-control-next:hover, .carousel-control-prev:hover {
    /* */
}

.timeline-year h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
}

.video-section h1 {
    font-size: 2.25rem !important;
    font-weight: 300;
    color: #2780c3;
    text-align: left;
}

.video-section p {
    color: #052c65;
    font-weight: 400;
    text-align: left;
}

.timeline-carousel .card {
    scroll-snap-align: start;
    margin-right: 20px;
}

.video-container iframe {
    box-shadow: 0 25px 60px rgba(5, 44, 101, 0.45);
    border-radius: 20px;
    transition: transform 0.4s ease-in-out;
}

.video-container iframe:hover {
    transform: scale(1.03);
}

body {
    background-color: #ffffff;
    color: #002346;
    padding: 0 px 0;
}

h2 {
    color: #3ea6ff;
    font-weight: bold;
    margin-bottom: 30px;
}

.carousel-wrapper {
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.carousel-container {
    overflow: hidden;
    padding: 0 60px;
}

.timeline-card {
    background: white;
    border-radius: 20px;
    padding: 15px;
    color: #001f4d;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    width: 260px;
    flex-shrink: 0;
}

.timeline-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.timeline-card h5 {
    color: #3ea6ff;
    font-weight: 400;
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 0.875rem;
}

.year-tag {
    margin-top: 20px;
    background: #3ea6ff;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 30px;
    font-weight: bold;
    color: white;
    position: relative;
}

.year-tag::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #3ea6ff;
}

.carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    z-index: 10;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.carousel-control-prev-icon {
    background-image: url('seta-esquerda.png');
}

.carousel-control-next-icon {
    background-image: url('seta-direita.png');
}

.carousel-control-next {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    color: var(--tertiary-color);
    border: 1px solid var(--tertiary-color);
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}



.control-primary {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
}

.carousel-control-prev, .carousel-control-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    background-color: var(--tertiary-color, #3ea6ff);
    border-color: var(--tertiary-color, #3ea6ff);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    display: inline-block;
    height: 20px;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: white;
}

.carousel-control-prev-icon {
    mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 2 5 8l6 6' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 2l6 6-6 6' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
}

.carousel-control-prev, .carousel-control-next {
    border-width: 2px;
}

.carousel-control-prev, .carousel-control-next {
    border-width: 1px;
}

.carousel-control-prev-icon {
    mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 2 5 8l6 6' stroke='white' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 2l6 6-6 6' stroke='white' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator-dot.active {
    background-color: var(--tertiary-color, #3ea6ff);
}

.timeline-line-wrapper {
    position: relative;
    margin-top: 20px;
    padding-bottom: 20px;
}

.timeline-line {
    height: 2px;
    background-color: #3ea6ff;
    position: absolute;
    top: 22px;
    left: 0;
    width: 100%;
    z-index: 0;
}

.timeline-labels {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    overflow-x: auto;
    position: relative;
    z-index: 1;
}

.timeline-label {
    font-size: 14px;
    color: white;
    background: #001f3f;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.card-date {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    color: white;
    background: #001f3f;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
}

.timeline-bar {
    position: relative;
    margin-top: 30px;
    padding-bottom: 30px;
    overflow-x: auto;
}

.timeline-track {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    border-top: 2px solid #3ea6ff;
    margin: 0 40px;
    gap: 60px;
    padding-top: 18px;
}

.timeline-marker {
    font-size: 14px;
    color: white;
    background: #3ea6ff;
    padding: 4px 16px;
    border-radius: 24px;
    white-space: nowrap;
    transform: translateY(-12px);
}

.carousel.timeline-carousel-dates {
    margin-top: 30px;
    overflow: hidden;
}

.carousel.timeline-carousel-dates .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 60px;
    padding-top: 18px;
    border-top: 2px solid #3ea6ff;
    margin: 0 40px;
}

.timeline-carousel-dates .timeline-marker {
    font-size: 14px;
    color: white;
    background: #3ea6ff;
    padding: 4px 16px;
    border-radius: 24px;
    white-space: nowrap;
    transform: translateY(-12px);
}

.brands-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.brands-carousel-container {
    overflow: hidden;
    width: 100%;
    padding: 0 10px;
}

.brands-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px; /* mesmo espaçamento do layout original */
}

.brand-card-wrapper {
    flex: 0 0 calc(25% - 15px); /* 4 cards por vez em telas grandes */
    min-width: 200px; /* ajuste conforme necessário */
}

/* Ajustes para responsividade */
@media (max-width: 992px) {
    .brand-card-wrapper {
        flex: 0 0 calc(33.333% - 14px); /* 3 cards por vez */
    }
}

@media (max-width: 768px) {
    .brand-card-wrapper {
        flex: 0 0 calc(50% - 10px); /* 2 cards por vez */
    }
}

@media (max-width: 480px) {
    .brand-card-wrapper {
        flex: 0 0 100%; /* 1 card por vez em mobile */
    }
}

.brands-control-prev,
.brands-control-next {
    position: static;
    width: auto;
    background: none;
    border: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.brands-control-prev:hover,
.brands-control-next:hover {
    opacity: 1;
}

.brands-control-prev .carousel-control-prev-icon,
.brands-control-next .carousel-control-next-icon {
    filter: invert(1);
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* mantém a proporção sem cortar */
}