/* =========================
   PÁGINAS INTERNAS MODERNAS
========================= */
.page-section {
  padding: 70px 15px;
  background: #f8fafc;
  min-height: 100vh;
}

.page-container {
  max-width: 1100px;
  margin: 0 auto;
}

.page-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 15px;
}

.page-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.page-subtitle {
  font-size: 1rem;
  color: #64748b;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 30px;
  margin-bottom: 12px;
}

.page-content p,
.page-content li {
  color: #475569;
  font-size: 1rem;
  line-height: 1.9;
}

.page-content ul {
  padding-left: 20px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.info-box {
  background: #f8fafc;
  border-radius: 18px;
  padding: 25px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.info-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.info-box h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.info-box p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
}

/* Formulario */
.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 0.96rem;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-modern {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  color: #fff;
  border: none;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.96rem;
  cursor: pointer;
  transition: 0.3s ease;
  width: fit-content;
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

/* FAQ */
.faq-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 18px;
}

.faq-item h4 {
  margin-bottom: 10px;
  color: #0f172a;
}

/* Responsive */
@media (max-width: 992px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .page-title {
    font-size: 1.8rem;
  }

  .page-subtitle {
    font-size: 0.95rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-section {
    padding: 50px 12px;
  }

  .page-title {
    font-size: 1.6rem;
  }

  .page-content p,
  .page-content li {
    font-size: 0.95rem;
  }
}




/* =========================
   CONTACTO MODERNO
========================= */
.contact-grid {
  grid-template-columns: repeat(4, 1fr);
}

.contact-box {
  text-align: center;
  padding: 30px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.10);
}

.contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.10);
}

.contact-icon.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-icon.telegram {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.contact-icon.facebook {
  background: linear-gradient(135deg, #1877f2, #0f5bd8);
}

.contact-icon.youtube {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

.contact-box h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.contact-box p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  min-height: 70px;
}

.contact-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 20px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px) scale(1.03);
  color: #fff;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.group-btn {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

.facebook-btn {
  background: linear-gradient(135deg, #1877f2, #0f5bd8);
}

.youtube-btn {
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

/* =========================
   RESPONSIVE CONTACTO
========================= */
@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-box p {
    min-height: auto;
  }
}

