/* Estilos Landing Bernardone */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #007bff, #00b4d8);
  color: #fff;
  overflow-x: hidden;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.logo {
  height: 60px;
}

.btn-primary {
  background: #ffca28;
  color: #1a1a1a;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #ffd54f;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  padding: 60px 20px;
}

.hero-text {
  max-width: 500px;
  animation: fadeInLeft 1s ease forwards;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-text p {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-buttons .btn-secondary {
  background: #fff;
  color: #0077b6;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.hero-buttons .btn-secondary:hover {
  background: #e0f7fa;
}

.hero-img img {
  width: 320px;
  animation: fadeInRight 1.2s ease forwards;
}

/* Steps */
.steps {
  background: #fff;
  color: #333;
  border-radius: 25px 25px 0 0;
  padding: 60px 30px;
  margin-top: 40px;
}

.steps .step {
  margin-bottom: 35px;
  border-left: 5px solid #007bff;
  padding-left: 15px;
  animation: fadeInUp 1s ease;
}

.steps .step h2 {
  color: #0077b6;
  font-weight: 700;
  margin-bottom: 8px;
}

/* FAQ */
.faq {
  padding: 60px 30px;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.faq-item p {
  display: none;
  margin-top: 10px;
  font-family: 'Nunito', sans-serif;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.2);
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer img.qr {
  width: 100px;
  margin-bottom: 10px;
}

.footer h3 {
  color: #ffca28;
}

.footer p {
  font-family: 'Nunito', sans-serif;
}

/* Animaciones */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-img img {
    width: 260px;
  }
  .steps {
    border-radius: 0;
  }
}
