:root {
  --azul-principal: #1C60A9;
  --amarelo-principal: #FFCD20;
  --azul-secundario: #1AA0DD;
  --amarelo-secundario: #F2AC29;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: var(--azul-principal);
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.hero {
  background: linear-gradient(
    to bottom,
    white 50%,
    lightgray 90%
  );
  color: var(--azul-principal);
  padding: 90px 0;
  text-align: center;
}

.logo-hero {
  max-width: 360px;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-buttons a {
  margin: 5px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary {
  background: var(--amarelo-principal);
  color: #1a1a1a;
}

.btn-primary:hover {
  background: var(--amarelo-secundario);
}

.btn-secondary {
  border: 2px solid var(--amarelo-principal);
  color: (var(--azul-secundario));
}

.btn-secondary:hover {
  background: var(--amarelo-principal);
  color: #1a1a1a;
}

.benefits {
  background: linear-gradient(
    to bottom,
    lightgray 0%,
    var(--azul-principal) 60%
  );
  padding: 60px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.card {
  background: white;
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  border-top: 6px solid var(--azul-secundario);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);

  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.location {
  background: linear-gradient(
    to bottom,
    var(--azul-principal) 0%,
    var(--azul-secundario) 60%
  );
  padding: 60px 0;
  text-align: center;
  color: white;
}

.location h2 {
  margin-bottom: 10px;
}

.location iframe {
  width: 100%;
  height: 320px;
  border: 0;
  margin-top: 20px;
  border-radius: 8px;
}

.contact {
  background: linear-gradient(
    to bottom,
    var(--azul-secundario) 0%,
    var(--azul-principal) 60%
  );
  padding: 70px 0;
  text-align: center;
  color: white;
}

.contact h2 {
  margin-bottom: 10px;
}

.contact form {
  max-width: 400px;
  margin: 25px auto;
}

.contact input {
  width: 100%;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact button {
  width: 100%;
  padding: 15px;
  background: white;
  color: var(--azul-principal);
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact button:hover {
  background: var(--amarelo-principal);
}

footer {
  background: #010101;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid {
    grid-template-columns: 1fr;
  }
}