/*
Theme Name: CooBook
Theme URI: https://coobook.me
Author: Project Kimiary OÜ
Description: Tema personalizado para la plataforma CooBook.
Version: 1.0
*/

/* Logo Responsive Fix */
.logo img {
  height: 250px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Responsive adjustments for logo */
@media screen and (max-width: 1024px) {
  .logo img {
    height: 200px;
  }
}

@media screen and (max-width: 768px) {
  .logo img {
    height: 150px;
    max-width: 180px;
  }
  
  .site-header {
    padding: 15px 20px;
  }
  
  .header-container {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .mobile-nav-wrapper {
    order: 2;
  }
  
  .logo {
    order: 1;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    height: 120px;
    max-width: 140px;
  }
  
  .site-header {
    padding: 10px 15px;
  }
}

@media screen and (max-width: 375px) {
  .logo img {
    height: 100px;
    max-width: 120px;
  }
}

/* Estilos para ventanas modales de Forminator */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal.hidden {
  display: none;
}
.modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 700px;
  width: 90%;
  position: relative;
}
.close-button {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}
.formulario-modal {
  display: none;
}
.formulario-modal:not(.hidden) {
  display: block;
}

/* Estilos para el formulario del bono */
.formulario-bono-container {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.formulario-bono-title {
  font-size: 2rem;
  font-weight: bold;
  color: #4a90e2;
  margin-bottom: 1.5rem;
}

.formulario-bono {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #4a90e2;
  outline: none;
}

.boton-continuar {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background-color: #4a90e2;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.boton-continuar:hover {
  background-color: #357ab8;
  transform: scale(1.05);
}

/* Estilos para el pie de página elegante */
.elegant-footer {
  background-color: #060915 !important;
  color: #333;
  padding: 20px;
}

/* Asegurar que todos los elementos dentro del footer tengan fondo oscuro */
.elegant-footer *,
.footer-container *,
.cb-footer-wrap *,
.cb-footer--v2 *,
.cb2-top *,
.cb2-brand *,
.cb2-right *,
.cb2-lei *,
.cb2-cta *,
.cb2-social *,
.cb2-links *,
.cb2-bottom * {
  background-color: transparent !important;
}

/* Fondo específico para elementos que necesitan color dentro del footer */
.cb2-lei {
  background: rgba(255,255,255,.03) !important;
}

.cb2-btn-ghost {
  background: rgba(255,255,255,.03) !important;
}

.cb2-social-list a {
  background: rgba(255,255,255,.02) !important;
}

.elegant-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.elegant-footer-top {
  text-align: center;
  margin-bottom: 20px;
}

.elegant-footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
}

.elegant-footer-logo p {
  font-size: 14px;
  color: #666;
}

.elegant-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.elegant-footer-navigation,
.elegant-footer-legal {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.elegant-footer-navigation a,
.elegant-footer-legal a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.elegant-footer-navigation a:hover,
.elegant-footer-legal a:hover {
  color: #ff9900;
}

.footer-copyright {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
  text-align: center;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 15px;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-navigation {
  display: flex;
  flex-direction: row;
  gap: 15px;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.footer-navigation.hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.footer-navigation.visible {
  max-height: 500px;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }

  .footer-navigation {
    flex-direction: column;
    align-items: center;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }

  .elegant-footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .elegant-footer-navigation,
  .elegant-footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .elegant-footer-logo img {
    max-width: 120px;
  }

  .elegant-footer-logo p {
    font-size: 12px;
  }

  .elegant-footer-navigation a,
  .elegant-footer-legal a {
    font-size: 12px;
  }

  .footer-copyright {
    font-size: 10px;
  }
}

/* General */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

.bono-button-section {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.bono-button-wrapper {
  text-align: center;
}

.bono-toggle-button {
  background: linear-gradient(135deg, #005eff, #2b00ff);
  color: #ffffff;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 94, 255, 0.4);
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.bono-toggle-button:hover {
  background: linear-gradient(135deg, #2b00ff, #005eff);
  box-shadow: 0 0 30px rgba(0, 94, 255, 0.6);
  transform: translateY(-2px);
}

.bono-toggle-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 94, 255, 0.3);
}
.bono-form-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.bono-form-section.visible {
  opacity: 1;
  transform: scale(1);
}

.bono-form h2 {
  text-align: center;
  color: #005eff;
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  background: #f9f9f9;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #005eff;
  outline: none;
}

.gender-group .radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.radio-group label {
  font-size: 0.95rem;
  color: #333;
}

.radio-group input {
  margin-right: 6px;
}

/* Oculto por defecto */
.hidden {
  display: none;
}

.bono-form-section.hidden {
  display: none;
}

.bono-form-section.visible {
  display: block;
}
.form-checks {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkbox-container {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  user-select: none;
  transition: color 0.3s ease;
}

.checkbox-container a {
  color: #005eff;
  text-decoration: underline;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 4px;
  height: 18px;
  width: 18px;
  background-color: #f1f1f1;
  border: 2px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.checkbox-container:hover .checkmark {
  border-color: #005eff;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #005eff;
  border-color: #005eff;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark::after {
  display: block;
}

.checkbox-container .checkmark::after {
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#invest-button {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background-color: #4a90e2;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

#invest-button:hover {
  background-color: #357ab8;
  transform: scale(1.05);
}

.phone-input-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-input-group select {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  width: 150px;
}

.phone-input-group input {
  flex: 1;
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}


/* ======= Página de Contacto – Estilos finales ======= */

.contact-section-header {
  text-align: center;
  margin: 80px auto 40px;
}

.contact-title {
  font-size: 38px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
}

.contact-subtitle {
  font-size: 18px;
  color: #444;
  max-width: 600px;
  margin: 0 auto;
}

.contact-list-section {
  margin: 60px auto;
  max-width: 1100px;
  padding: 0 20px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border-left: 5px solid #3e5cff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(20, 20, 20, 0.05);
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-left-color: #272f91;
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(20, 20, 20, 0.1);
}

.contact-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #3e5cff, #000000);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.contact-icon::before {
  content: '';
  width: 22px;
  height: 22px;
  background: white;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.email-icon::before {
  mask-image: url('data:image/svg+xml;utf8,<svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 4h16v16H4V4zm2 2v1.236l6 3.75 6-3.75V6H6zm12 12V9.764l-6 3.75-6-3.75V18h12z"/></svg>');
}
.office-icon::before {
  mask-image: url('data:image/svg+xml;utf8,<svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 22V2h6v20H3zm12 0V8h6v14h-6z"/></svg>');
}
.support-icon::before {
  mask-image: url('data:image/svg+xml;utf8,<svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 100 20 10 10 0 000-20zm1 17h-2v-2h2v2zm1.07-7.75l-.9.92C12.45 12.9 12 13.5 12 15h-2v-.5c0-.8.45-1.5 1.17-2.08l1.24-1.26a2 2 0 10-2.83-2.83L8.5 9.5l-1.41-1.41 1.76-1.76a4 4 0 115.65 5.65z"/></svg>');
}
.company-icon::before {
  mask-image: url('data:image/svg+xml;utf8,<svg fill="black" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 13h2v-2H3v2zm4 0h10v-2H7v2zm12 0h2v-2h-2v2zM3 17h2v-2H3v2zm4 0h10v-2H7v2zm12 0h2v-2h-2v2zM3 21h18v-2H3v2z"/></svg>');
}

.contact-details h4 {
  font-size: 17px;
  margin: 0 0 4px;
  color: #000000;
  font-weight: 600;
}

.contact-details p {
  margin: 0;
  font-size: 15px;
  color: #333;
}

.real-maps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.map-frame {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 500px;
  flex: 1 1 400px;
}

.map-frame h4 {
  padding: 18px;
  margin: 0;
  font-size: 18px;
  background: linear-gradient(to right, #3e5cff, #000);
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.map-frame iframe {
  width: 100%;
  height: 350px;
  border: none;
}

.cta-collab-section {
  margin: 100px auto 80px;
  padding: 0 20px;
  max-width: 1000px;
  display: flex;
  justify-content: center;
}

.cta-collab-box {
  background: linear-gradient(to bottom right, #3e5cff, #000000);
  border-radius: 20px;
  padding: 50px 40px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.cta-collab-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-title {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 700;
}

.cta-text {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  padding: 14px 30px;
  background: #ffffff;
  color: #3e5cff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #3e5cff;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(62, 92, 255, 0.3);
}

.legal-links-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 100px auto 60px;
  padding: 0 20px;
  max-width: 1000px;
}

.legal-link {
  padding: 14px 24px;
  border-radius: 12px;
  background: transparent;
  color: #3e5cff;
  border: 2px solid #3e5cff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 220px;
}

.legal-link:hover {
  background: linear-gradient(to right, #3e5cff, #7856ff);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(62, 92, 255, 0.2);
}

.bloque-inversion-cta {
  padding-bottom: 200px;
  margin-bottom: 40px;
  text-align: center;
}
.btn-invierte {
  background: linear-gradient(to right, #1f4eff, #0c33d4);
  color: #fff;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(31, 78, 255, 0.3);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
  margin-top: 30px;
}

.btn-invierte:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(31, 78, 255, 0.4);
}

.bloque-inversion-cta {
  padding-bottom: 140px;
  margin-bottom: 40px;
  text-align: center;
}
.formulario-trabajo {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 40px auto 0;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  animation: fadeInForm 0.8s ease forwards;
}

.formulario-trabajo input,
.formulario-trabajo select,
.formulario-trabajo textarea {
  padding: 14px 18px;
  border: 1.5px solid #0099ff;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.formulario-trabajo input:focus,
.formulario-trabajo select:focus,
.formulario-trabajo textarea:focus {
  outline: none;
  border-color: #6a00ff;
}

.formulario-trabajo textarea {
  resize: vertical;
  min-height: 120px;
}

.formulario-trabajo input[type="file"] {
  border: none;
  padding-left: 0;
}

.formulario-trabajo button {
  background: linear-gradient(90deg, #0099ff, #6a00ff);
  color: white;
  padding: 14px 28px;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.formulario-trabajo button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 153, 255, 0.3);
}

@keyframes fadeInForm {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .formulario-trabajo {
    padding: 20px 15px;
  }
}
.custom-file {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.file-label {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(90deg, #0099ff, #6a00ff);
  color: white;
  font-weight: bold;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 15px;
}

.file-label:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 153, 255, 0.3);
}

.file-input {
  display: none;
}

.file-name {
  font-size: 14px;
  color: #555;
  font-style: italic;
  padding-left: 8px;
}

.lista-espera-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.lista-espera-titulo {
  font-size: 28px;
  color: #2a7de1;
  font-weight: 700;
  margin-bottom: 20px;
}

.lista-espera-texto {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 20px;
}

.lista-espera-subtexto {
  font-size: 16px;
  margin-bottom: 25px;
  font-weight: 500;
}

/* === Estilo elegante y profesional para Forminator === */

.forminator-ui {
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  color: #333;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  max-width: 800px;
  margin: 0 auto;
}

.forminator-row {
  margin-bottom: 24px;
}

.forminator-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.forminator-input,
.forminator-select,
.forminator-textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  font-size: 15px;
  transition: all 0.3s ease;
}

.forminator-input:focus,
.forminator-select:focus,
.forminator-textarea:focus {
  border-color: #005eff;
  box-shadow: 0 0 0 3px rgba(0, 110, 255, 0.15);
  outline: none;
  background-color: #ffffff;
}

.forminator-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 38px;
  cursor: pointer;
}

.forminator-button {
  background: linear-gradient(to right, #005eff, #2b00ff);
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.forminator-button:hover {
  background: linear-gradient(to right, #2b00ff, #005eff);
  box-shadow: 0 4px 16px rgba(0, 94, 255, 0.3);
  transform: translateY(-2px);
}

.forminator-pagination-steps {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}

.forminator-pagination-steps li {
  font-weight: 500;
  color: #777;
}

.forminator-pagination-steps li.forminator-current {
  color: #005eff;
  font-weight: 700;
  border-bottom: 2px solid #005eff;
}

.forminator-form-wrapper {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.forminator-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.forminator-form-wrapper input,
.forminator-form-wrapper select,
.forminator-form-wrapper textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}

.forminator-form-wrapper input:focus,
.forminator-form-wrapper select:focus,
.forminator-form-wrapper textarea:focus {
  border-color: #005eff;
  outline: none;
}

.forminator-form-wrapper button {
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #005eff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.forminator-form-wrapper button:hover {
  background-color: #003bb5;
}

.reserva-bono-section {
  background: linear-gradient(to right, #f4f6ff, #e9f0ff);
  padding: 60px 20px;
  border-radius: 20px;
  margin: 50px auto;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0, 55, 125, 0.1);
  text-align: center;
}

.reserva-bono-contenido {
  max-width: 700px;
  margin: 0 auto;
}

.reserva-titulo {
  font-size: 2em;
  color: #152d50;
  font-weight: 700;
  margin-bottom: 20px;
}

.reserva-texto {
  font-size: 1.1em;
  color: #34495e;
  margin-bottom: 30px;
  line-height: 1.6;
}

.reserva-boton {
  background: linear-gradient(to right, #0045ff, #00aaff);
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(0, 85, 255, 0.3);
}

.reserva-boton:hover {
  background: linear-gradient(to right, #0033cc, #0099dd);
  transform: translateY(-2px);
}

.reserva-condiciones {
  font-size: 0.9em;
  color: #666666;
  margin-top: 20px;
}

/* Web3 Section - Tech Style */
.cbk-web3 {
  padding: 100px 20px;
  background: #0a0e1a;
  position: relative;
  overflow: hidden;
}

.cbk-web3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, rgba(27, 102, 255, 0.03) 0%, transparent 50%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(27, 102, 255, 0.03) 2px,
      rgba(27, 102, 255, 0.03) 4px
    );
  pointer-events: none;
}

.cbk-web3::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #1b66ff, #7c3aed, #1b66ff, transparent);
  box-shadow: 0 0 20px rgba(27, 102, 255, 0.5);
}

.cbk-web3__wrap {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cbk-web3__head {
  text-align: center;
  margin-bottom: 60px;
}

.cbk-web3__kicker {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7c3aed;
  margin: 0 0 15px;
  text-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.cbk-web3__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(27, 102, 255, 0.3);
}

.cbk-web3__accent {
  background: linear-gradient(135deg, #00d4ff, #7c3aed, #1b66ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(15deg); }
}

.cbk-web3__lead {
  font-size: 1.15rem;
  color: #8b95a5;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.cbk-web3__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.cbk-web3__feature {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(27, 102, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.cbk-web3__feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1b66ff, #7c3aed, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cbk-web3__feature:hover::before {
  opacity: 1;
}

.cbk-web3__feature:hover {
  transform: translateY(-5px);
  border-color: rgba(27, 102, 255, 0.4);
  box-shadow: 0 15px 40px rgba(27, 102, 255, 0.15), 0 0 30px rgba(124, 58, 237, 0.1);
}

.cbk-web3__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #1b66ff, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(27, 102, 255, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.1);
  position: relative;
}

.cbk-web3__icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b66ff, #7c3aed);
  z-index: -1;
  filter: blur(10px);
  opacity: 0.5;
}

.cbk-web3__icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.cbk-web3__featureTitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}

.cbk-web3__featureText {
  font-size: 0.95rem;
  color: #8b95a5;
  line-height: 1.6;
  margin: 0;
}

.cbk-web3__cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cbk-web3 {
    padding: 60px 20px;
  }
  
  .cbk-web3__features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cbk-web3__cta {
    flex-direction: column;
    align-items: center;
  }
}

/* Ecosistema Section - Tech Style */
.cbk-ecosistema {
  padding: 100px 20px;
  background: #0d1220;
  position: relative;
}

.cbk-ecosistema::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7c3aed, #00d4ff, #7c3aed, transparent);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
}

.cbk-ecosistema::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(27, 102, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cbk-ecosistema__wrap {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cbk-ecosistema__head {
  text-align: center;
  margin-bottom: 60px;
}

.cbk-ecosistema__kicker {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #00d4ff;
  margin: 0 0 15px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.cbk-ecosistema__title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 25px;
  line-height: 1.3;
  text-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

.cbk-ecosistema__accent {
  background: linear-gradient(135deg, #00d4ff, #7c3aed, #1b66ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

.cbk-ecosistema__lead {
  font-size: 1.1rem;
  color: #8b95a5;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
}

.cbk-ecosistema__usOS {
  margin-bottom: 60px;
}

.cbk-ecosistema__usOSTitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 30px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
  text-align: center;
  margin: 0 0 30px;
}

.cbk-ecosistema__usOSGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.cbk-ecosistema__use {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.cbk-ecosistema__use::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d4ff, #7c3aed, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cbk-ecosistema__use:hover::before {
  opacity: 1;
}

.cbk-ecosistema__use:hover {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
  transform: translateY(-3px);
}

.cbk-ecosistema__useIcon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.cbk-ecosistema__useIcon svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
}

.cbk-ecosistema__use h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}

.cbk-ecosistema__use p {
  font-size: 0.9rem;
  color: #8b95a5;
  line-height: 1.6;
  margin: 0;
}

.cbk-ecosistema__perfiles {
  margin-bottom: 50px;
}

.cbk-ecosistema__perfilesTitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 35px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.cbk-ecosistema__perfilesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.cbk-ecosistema__perfil {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(27, 102, 255, 0.15);
  position: relative;
  transition: all 0.3s ease;
}

.cbk-ecosistema__perfil::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #1b66ff, #7c3aed, #00d4ff);
  border-radius: 20px 20px 0 0;
}

.cbk-ecosistema__perfil:hover {
  border-color: rgba(27, 102, 255, 0.4);
  box-shadow: 0 15px 40px rgba(27, 102, 255, 0.15);
  transform: translateY(-3px);
}

.cbk-ecosistema__perfilIcon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #1b66ff, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 25px rgba(27, 102, 255, 0.4);
}

.cbk-ecosistema__perfilIcon svg {
  width: 26px;
  height: 26px;
  stroke: #ffffff;
}

.cbk-ecosistema__perfil h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 15px;
}

.cbk-ecosistema__perfil ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cbk-ecosistema__perfil li {
  font-size: 0.9rem;
  color: #8b95a5;
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.cbk-ecosistema__perfil li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.cbk-ecosistema__cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cbk-ecosistema {
    padding: 60px 20px;
  }
  
  .cbk-ecosistema__usOSGrid {
    grid-template-columns: 1fr;
  }
  
  .cbk-ecosistema__perfilesGrid {
    grid-template-columns: 1fr;
  }
  
  .cbk-ecosistema__cta {
    flex-direction: column;
    align-items: center;
  }
}