:root {
  --font-default: Montserrat, sans-serif;
  --font-primary: Inter, sans-serif;
  --font-secondary: Montserrat, sans-serif;
  --color-default: #0a1b35;
  --color-whatsapp: #0cb940;
  --color-primary: #0080b6;
  --color-secondary: #0a0a0a;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
#hero {
  background-color: var(--color-default);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
  position: relative;
}

.hero-image-container {
  position: relative;
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: left;
  max-width: 50%;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.hero-text h1::before {
  content: '';
  display: inline-block;
  height: 3.2em;
  width: 5px;
  background-color: #ff0000;
  margin-right: 25px;
}

@media (max-width: 768px) {
  .hero-text {
    left: 35%;
    max-width: 80%;
    transform: translate(-50%, -50%);
    text-align: left;

  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text h1::before {
    height: 3.5em;    
    margin-right: 15px;
  }
}

@media (max-width: 480px) {
  .hero-text {
    max-width: 90%;
    text-align: left;
    left: 35%;
  }

  .hero-text h1 {
    font-size: 1rem;
  }

  .hero-text h1::before {
    height: 3.2em;
    margin-right: 10px;
   
  }
}
#cards-section {
  background-image: url('../img/fundo/fundo.webp'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat; 
  padding: 30px;
}


.container {
  max-width: 1200px;
  margin: 0 auto;  
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 30px;
}

.col {
  flex: 0 0 48%;
  box-sizing: border-box;
  margin: 1%;  
  margin-bottom: 15px !important;  
}

.card {
  background-color: #dddddd;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  max-width: 570px;
  max-height: 350px;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card a {
  display: block;
  text-decoration: none;
  color: #333;
}

.card img {
  width: 100%;
  height: auto;
}

footer {
  background: var(--color-secondary);
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #4CAF50;
  text-decoration: none;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .col {
    flex: 0 0 100%;
    justify-content: center;
    align-items: center;
  }
}

