: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);
  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);
}

#cards-section {
  background-image: url('../img/background/background.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: 100%;
  height: auto;
  max-height: 344px;
}

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

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

@media (max-width: 768px) {
  .col {
    flex: 0 0 100%;
    justify-content: center;
    align-items: center;
  }
  
  .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: 100%;
    height: auto;
    max-height: 188px;
  }

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

