body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #0e1a2b;
  color: #ffffff;
}

header {
  background-color: #0b1625;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1001;
}

header a {
  text-decoration: none;
  color: inherit;
}

header h1 {
  font-size: 1.5rem;
  margin: 0;
}

nav {
  display: flex;
  gap: 1.2rem;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  height: 3px;
  background: white;
  margin: 4px 0;
  width: 25px;
}

.hero {
  background-color: #0e1a2b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  flex-wrap: wrap;
}

.hero .text {
  flex: 1;
  padding-right: 2rem;
}

.hero h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cta-button {
  background-color: #ffffff;
  color: #0e1a2b;
  border: 2px solid #ffffff;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 6px;
  margin-top: 2rem;
}

.icon-whatsapp {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
}

.hero-image {
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
}

.services {
  background-color: #e9ddcc;
  color: #1b1b1b;
  padding: 4rem 2rem;
}

.services h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.service {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

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

.service-icon {
  font-size: 2rem;
  color: #004080;
  margin-bottom: 0.8rem;
}

.service h4 {
  color: #004080;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.service-content {
  font-size: 0.9rem;
  color: #444;
  display: block;
}

/* FOOTER MINIMALISTA */
footer {
  background-color: #0b1625;
  color: #cccccc;
  padding: 2rem 1.5rem;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}

.footer-minimal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-item a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.7;
}

.footer-copy-minimal {
  text-align: center;
  font-size: 0.8rem;
  color: #999999;
}

/* MOBILE */
@media (max-width: 768px) {
  nav.mobile-menu.dropdown {
    display: none;
    flex-direction: column;
    background-color: #0b1625;
    position: absolute;
    top: 60px;
    right: 1rem;
    width: auto;
    padding: 1rem;
    border: 1px solid #ffffff22;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }

  nav.mobile-menu.dropdown.active {
    display: flex;
    animation: fadeIn 0.25s ease-in-out;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero .text {
    padding-right: 0;
    text-align: center;
  }

  .hero-image {
    max-width: 200px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-minimal {
    flex-direction: column;
    font-size: 0.8rem;
    gap: 1rem;
  }

  .footer-copy-minimal {
    font-size: 0.8rem;
    padding-top: 1rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
