* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.4;
  background-color: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background: #111;
  padding: 0.5rem 0;
  color: white;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 36px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 1rem;
  font-size: 0.95rem;
}

.hero {
  background: #f4f4f4;
  padding: 2rem 0;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-text {
  text-align: center;
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-size: 2rem;
}

.hero-text p {
  margin: 0.5rem 0;
}

.hero-video video {
  width: 100%;
  max-width: 500px;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .hero-text {
    flex: 1;
    margin-right: 1rem;
  }

  .hero-video {
    flex: 1;
  }
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #f59e0b;
  color: white;
  text-decoration: none;
  margin-top: 0.75rem;
  border-radius: 4px;
  font-size: 0.95rem;
}

.features {
  padding: 2.5rem 0;
  background: #fff;
}

.features h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  text-align: center;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.card i {
  font-size: 1.75rem;
  color: #f59e0b;
  margin-bottom: 0.75rem;
}

.contacto {
  padding: 2.5rem 0;
  background: #f4f4f4;
}

.contacto h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.contact-info {
  list-style: none;
  text-align: center;
  margin-top: 0.5rem;
}

.contact-info li {
  margin: 0.4rem 0;
  font-size: 1rem;
}

.contact-info li i {
  margin-right: 0.4rem;
  color: #f59e0b;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 0.75rem 0;
  font-size: 0.85rem;
}
#cta-mini {
  background: #f59e0b;
  color: white;
  text-align: center;
  padding: 0.75rem 0.5rem; /* reducido */
  margin-top: 0.5rem;      /* reducido */
  margin-bottom: 0.5rem;   /* reducido */
  border-radius: 6px;
}

#cta-mini h2 {
  margin-bottom: 0.25rem;  /* reducido */
  font-size: 1.1rem;       /* opcional: más pequeño */
}

.btn-light {
  background: white;
  color: #f59e0b;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.btn-light:hover {
  background: #ffe8c2;
}
