﻿.button_group {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.btn_primary {
  padding: 10px;
  color: white !important;
  text-decoration: none;
  width: 100%;
  max-width: 200px;
  /* clip-path: polygon(13% 0, 100% 0, 87% 100%, 0 100%);*/
  border: none;
  border-radius: 5px;
  display: block;
  text-align: center;
  background-color: #006f9e;
}

.btn_second {
  padding: 10px;
  color: white !important;
  text-decoration: none;
  width: 100%;
  max-width: 200px;
  /* clip-path: polygon(13% 0, 100% 0, 87% 100%, 0 100%);*/
  border: none;
  border-radius: 5px;
  display: block;
  text-align: center;
  background-color: #fcb316;
}

body {
  font-size: calc(12px + 0.390625vw);
}

html {
  font-size: calc(10px + 0.390625vw);
}

@media (max-width: 991px) {
  body {
    font-size: calc(12px + 0.390625vw);
  }
  html {
    font-size: calc(12px + 0.390625vw);
  }
}
.main-banner {
  position: relative;
  text-align: center;
  min-height: 50vh;
  background-image: url("../images/banners/salvador.pexels-alexandre-saraiva-carniato-583650-3700900.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.main-banner img {
  width: 100%;
  height: auto;
}

.logo-container {
  position: absolute;
  top: 10%;
  left: 10%;
  display: flex;
  align-items: center;
}

.fiata-logo {
  max-height: 150px;
}

.vla-logo {
  max-height: 60px;
  margin-left: 20px;
}

.menu-icon {
  position: absolute;
  top: 10%;
  right: 10%;
  font-size: 2rem;
  color: #006f9e;
}

.sponsers h1 {
  font-size: clamp(18px, 1.8rem, 2rem);
  font-weight: bold;
  color: #006f9e;
}
.sponsers h1 font {
  font-size: clamp(18px, 1.8rem, 2rem);
  font-weight: bold;
  color: #006f9e;
}
.sponsers span {
  font-weight: 300;
  font-size: 30px;
  color: #006f9e;
}
.sponsers .btn-big {
  width: 375px;
}
.sponsers .email a {
  color: black;
  text-decoration: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.grid img {
  width: 100%;
  object-fit: cover;
}

/*partners*/
.card {
  margin-bottom: 20px;
}
.card .card-body {
  border-bottom: 1px solid #dee2e6; /* Re-add border */
}
.card .card-body p {
  text-align: justify;
}
.card .card-body .card-main {
  position: relative;
}
.card .card-body .card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #9e9ea3;
}
.card .card-body .card-img img {
  width: auto;
  max-height: 150px;
  padding: 10px;
}
.card .label-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 16px;
  background-color: #006f9e;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 5px;
  left: -20px;
  color: white;
  justify-content: flex-end;
  text-transform: uppercase;
  font-weight: 800;
}
.card .label-container span {
  color: white !important;
  font-size: 15px;
}

.card-header {
  margin-bottom: 0px !important;
  padding: 0px;
}
.card-header .btn-link {
  padding: 10px;
  text-decoration: none;
}

.btn {
  border: unset;
}

.btn-link {
  text-decoration: none;
  transition: none;
  padding: unset;
  border: unset;
  color: unset;
}

.btn-link:hover {
  text-decoration: none;
  box-shadow: none;
  border: none;
  outline: none;
  color: unset;
}

.bronze-header {
  background: linear-gradient(135deg, #cd7f32, #b87333, #f4a460);
  color: white;
}

.silver-header {
  background-color: #d3d3d3;
  color: black;
}

.platinum-header {
  background-color: #e5e4e2;
  color: black;
}

/* Diamond header with gradient */
.diamond-header {
  background: #d6af4b;
  color: white;
  position: relative; /* For the shine overlay */
  overflow: hidden; /* To ensure the shine effect stays within the header */
}

/* Shine effect */
.diamond-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* Start off-screen */
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
  transform: skewX(-45deg); /* Create a slanted shine effect */
  animation: shine 3s infinite; /* Animation duration and infinite loop */
}

/* Shine animation */
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
