body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  background: url('../images/background.png') center/cover no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-container {
  position: relative;
  z-index: 999;
  transition: all 0.3s ease;
}

.logo-container.sticky {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 120px;
  height: auto;
  z-index: 9999;
}

.logo {
  width: 300px;
  margin-bottom: 32px;
}

.cta-button {
  padding: 16px 36px;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  color: #003366;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
  background-color: #003366;
  color: #ffffff;
}

.modality {
  text-align: center;
  padding: 0 20px 80px 20px;
}

.modality .description h2 {
  margin-bottom: 16px;
  color: #007bff;
}

.modality .boxes {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.box {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 24px;
  max-width: 300px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.box:hover {
  transform: translateY(-5px);
}

@media (min-width: 768px) {
  .modality .boxes {
    flex-direction: row;
    justify-content: center;
  }
}

.oferta-body {
  background: url('../images/background.png') center/cover no-repeat;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.oferta-header {
  display: flex;
  align-items: center;
  padding: 20px;
}

.oferta-logo {
  width: 120px;
  margin-right: 20px;
}

.oferta-title {
  font-size: 28px;
  font-weight: bold;
  color: white;
}

.oferta-main {
  flex: 1;
  padding: 40px;
}

.white-title {
  color: white;
  font-size: 20px;
  margin-top: 40px;
}

.pdf-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.pdf-card {
  background-color: white;
  color: #333;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  width: 220px;
  font-size: 14px;
  font-weight: normal;
}

.pdf-card a {
  display: block;
  margin-top: 8px;
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
}

.pdf-card a:hover {
  text-decoration: underline;
}

.footer {
  background-color: #000;
  color: white;
  padding: 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  gap: 20px;
}

.map-embed iframe {
  border-radius: 12px;
}

.contact {
  line-height: 1.6;
  font-size: 14px;
}

.icon-wrapper {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdf-card img {
  width: 100%;
  height: auto;
  max-width: 220px;
  border-radius: 8px;
  display: block;
  margin: 0 auto 12px;
}