/* Base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #111;
}

    
a {
  text-decoration: none;
  color: #333;
}

.konverfy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.konverfy-btn {
  background-color: #111;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.0078125rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.konverfy-btn:hover {
  background-color: #333;
}

.konverfy-btn-blue {
  background-color: #0066ff;
  color: white;
}

.konverfy-btn-blue:hover {
  background-color: #0052cc;
}

.konverfy-text-xl {
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  margin: 0;
  line-height: 3.9rem;
}


.konverfy-subtitle {
  text-align: center;
  font-size: 1rem;
  margin-top: 60px;
  color: #444;
}

.konverfy-description {
  text-align: center;
  font-size: 1.25rem;
  max-width: 700px;
  margin: 20px auto;
  line-height: 1.6;
  color: #444;
}

/* Header & Nav */
.konverfy-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 10;
}

.konverfy-logo {
  width: 220px;
}

@media screen and (max-width: 768px) {
    .konverfy-logo {
        width: 160px; /* tamaño en móviles */
    }
}

.konverfy-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.konverfy-nav a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  padding: 8px 4px;
}

.konverfy-auth {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mega Menu */
.konverfy-dropdown {
  position: relative;
}

.konverfy-mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  /*! width: 100vw; */
  background: #fff;
  padding: 2rem 3rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.konverfy-dropdown:hover .konverfy-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.konverfy-column h4 {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
}

.konverfy-column ul {
  padding: 0;
  margin: 0;
}

.konverfy-column li {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #111;
}

.konverfy-badge {
  background: #e1efff;
  color: #0366d6;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.konverfy-column img {
  width: 100%;
  border-radius: 8px;
  margin-top: 1rem;
}

/* Hero Section */
.konverfy-hero {
  text-align: center;
  padding: 3rem 1rem 0.1rem;
}

/* Logos */
.konverfy-logos {
  text-align: center;
  margin-top: 2rem;
}

.konverfy-subnote {
  font-size: 0.8rem;
  color: #666;
}

.konverfy-logo-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 1rem;
}

.konverfy-logo-row img {
  height: 72px;
  object-fit: contain;
}

/* Feature Cards */
.konverfy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.konverfy-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  transition: all 0.3s ease;
  border: 3px solid #f6f6f6;
}

.hover-konverfy-shadow:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}



.konverfy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.konverfy-feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.konverfy-feature-card {
  background-color: #fafafa;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}

.konverfy-feature-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.konverfy-feature-card h3 {
  margin-top: 0;
  font-size: 1rem;
  font-weight: 700;
}

.konverfy-feature-card p {
  font-size: 0.9rem;
  color: #444;
}

.konverfy-image-showcase img {
  width: 100%;
  border-radius: 16px;
  margin: 3rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.konverfy-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: center;
  padding-bottom: 4rem;
}

.konverfy-stat h2 {
  font-size: 2rem;
  margin: 0;
  font-weight: 800;
}

.konverfy-stat p {
  font-size: 0.95rem;
  color: #444;
  margin-top: 0.5rem;
}


.konverfy-stat {
  background-color: #fafafa;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}


.konverfy-section-3 {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.konverfy-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.konverfy-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
}
.konverfy-box {
  background: #f6f6f6;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
}
.konverfy-box img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}
.konverfy-box h3 {
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
}
.konverfy-box p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}
.konverfy-quote {
  margin-top: 50px;
  text-align: center;
  font-size: 1rem;
  color: #000;
}
.konverfy-quote em {
  font-style: italic;
  font-size: 1.1rem;
}
.konverfy-quote strong {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-size: 1rem;
}
.konverfy-quote span {
  font-size: 0.9rem;
  color: #555;
}





/* ========== Component : Badge Style  ============= */


.badge {
  position: relative;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #191919;
  padding: 5.5px 15.5px;
  border-radius: 500px;
  margin-bottom: 30px;
  z-index: 1;
  background: #fff;
}

.badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 500px;
  padding: 1px; /* grosor del borde */
  background: linear-gradient(to right, rgba(255, 87, 213, 0.5), rgba(78, 110, 255, 0.5));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}





@media (max-width: 991px) {
  .badge {
    margin-bottom: 20px;
  }
}

.badge--white {
  padding: 5.5px 18.5px;
  background: #FFFFFF;
}

.badge--purple {
  background: #B5A8F8;
}

.badge--yellow {
  background: #FFED88;
}

.badge--blue {
  background: #A2DFF5;
}







    /* HEADER CON TOGGLE PERSONALIZADO */
.price-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 0px;
    margin-top: 72px;
}

.billing-toggle-root {
  position: relative;
  background: #f5f5f5;
  border: 4px solid #f5f5f5;
  border-radius: 24px;
  display: flex;
  width: fit-content;
  overflow: hidden;
}

.billing-toggle-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 20px;
  transition: transform 0.3s ease;
  z-index: 0;
}

.billing-toggle-option {
  position: relative;
  z-index: 1;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #19191880;
}

.billing-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 16px 48px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.billing-radio:checked + .billing-label span {
  color: #191918;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.save-text {
  color: #2563eb;
  font-size: 14px;
  font-weight: 500;
}

    

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 6px;
	  padding: 6px 6px;
      max-width: 1280px;
      margin: auto;
    }

    .pricing-card {
      background: #fff;
      border: 2px solid #f0f0f0;
      border-radius: 16px;
      padding: 32px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    .recommended {
      border-color: #2563eb;
    }

    .plan-name {
      font-size: 20px;
      font-weight: 700;
    }

    .pricing-badge {
      background: #2563eb;
      color: #fff;
      font-size: 12px;
      padding: 2px 8px;
      border-radius: 999px;
      margin-left: 6px;
      font-weight: 300;
    }

    .plan-price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      font-size: 24px;
      font-weight: 600;
      margin-top: 8px;
    }

    .price-unit {
      font-size: 14px;
      color: #888;
    }

    .hidden {
      display: none;
    }

    .plan-desc {
      font-size: 14px;
      color: #555;
      margin: 8px 0 16px;
    }

    .plan-cta {
      display: inline-block;
      padding: 10px 0px;
      border-radius: 8px;
      font-weight: 600;
      text-align: center;
      text-decoration: none;
      background: #ffffff;
      border: 1px solid #f0f0f0;
      color: #1a1a1a;
      margin-bottom: 16px;
      width: 100%;
    }

    .plan-cta.primary {
      background: #2563eb;
      color: #fff;
    }

    .plan-cta.primary:hover {
      background: #1e49c5;
    }

    .plan-features {
      list-style: none;
      padding: 0;
      margin: 0 0 24px 0;
    }

    .plan-features li {
      position: relative;
      padding-left: 24px;
      margin-bottom: 10px;
      font-size: 14px;
      color: #333;
    }

    .plan-features li:before {
      content: url('data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 64 64\" width=\"14\" height=\"14\"><path d=\"m56,18.24l-30,30L8,30.24l4.24-4.24,13.76,13.76,25.76-25.76,4.24,4.24Z\" fill=\"%2322c55e\"/></svg>');
      position: absolute;
      left: 0;
      top: 1px;
    }

.plan-features li.no::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="14" height="14"><path d="M48 16L16 48M16 16l32 32" stroke="%23ef4444" stroke-width="6" stroke-linecap="round"/></svg>');
}

    .plan-features li span {
      border-bottom: 1px solid rgba(0, 0, 0, 0.2);
      text-underline-offset: 3px;
      font-weight: 500;
    }

    .ai-card {
      background: #f1f5f9;
      border-radius: 12px;
      padding: 16px;
      margin-top: 24px;
    }

    .ai-header {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      margin-bottom: 12px;
    }

.ai-icon {
    width: 28px;
    height: 28px;
    background: transparent;
    padding-left: 2px;
    padding-top: 1px;
    border-radius: 999px;
    box-shadow: 0 3px 9px 0 #19191808, 0 .7px 1.462px 0 #19191803;
}

    .ai-title {
      font-size: 15px;
      color: #111827;
    }

    .ai-features {
      list-style: none;
      padding: 0;
    }

    .feature-item {
      display: flex;
      gap: 8px;
      font-size: 14px;
      color: #1f2937;
    }

.integraciones img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    border: 2px solid #f0f0f0;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}



.features-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.feature-left .text {
  order: 1;
}
.feature-left .image {
  order: 2;
}
.feature-right .image {
  order: 1;
}
.feature-right .text {
  order: 2;
}

.feature .text {
  flex: 1 1 480px;
}

.feature .text h4 {
  color: #555;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 12px;
}

.feature .text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature .text p {
  font-size: 18px;
  line-height: 1.6;
}

.feature .text .cta-link {
  display: inline-block;
  margin-top: 16px;
  color: #0a65ff;
  font-weight: 500;
  text-decoration: none;
}

.feature .image {
  flex: 1 1 400px;
}

.feature .image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

.btn-dark-center {
    display: flex;
    justify-content: center;
}



.cta-free {
  text-align: center;
  padding: 6rem 2rem;
  background: #fff;
}

.cta-free__content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-free__content p {
  font-size: 1.25rem;
  color: #444;
  margin-bottom: 2rem;
}

.btn-dark {
  background: #111;
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-dark-center {
    display: flex;
    justify-content: center;
}


.btn-dark:hover {
  background: #000;
}


.konverfy-img-top {
    width: 400px;
    height: auto;
}




.konverfy-legal {
  padding: 4rem 1rem;
}

.konverfy-legal-container {
  max-width: 720px;
  margin: 0 auto;
  color: #111;
}

.konverfy-legal-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.konverfy-legal-intro {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #333;
}

.konverfy-legal-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.konverfy-legal-container p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.konverfy-legal-container a {
  color: #0066ff;
  text-decoration: underline;
}










  #cookieCard {
    display: none;
  }

  .cookie-card {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    max-width: 320px;
    width: 100%;
    padding: 1rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, .05);
  }

  .title {
    font-weight: 600;
    color: #1f2937;
  }

  .description {
    margin-top: 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #4b5563;
  }

  .description a {
    color: #3b82f6;
  }

  .description a:hover {
    text-decoration: underline;
  }

  .actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    column-gap: 1rem;
    flex-shrink: 0;
  }

  .accept {
    font-size: 0.75rem;
    line-height: 1rem;
    background-color: #111827;
    font-weight: 500;
    border-radius: 0.5rem;
    color: #fff;
    width: 100%;
    padding: 0.625rem 1rem;
    border: none;
    transition: all .15s ease;
  }

  .accept:hover {
    background-color: #374151;
  }

  @media (max-width: 768px) {
    .cookie-card {
      bottom: 6px;
      right: 10px;
      max-width: 90%;
      left: 5%;
      padding: 0.75rem;
      z-index: 9999;
    }

    .description {
      font-size: 0.75rem;
    }

    .actions {
      flex-direction: column;
      gap: 0.5rem;
    }

    .accept {
      width: 100%;
    }
  }






.footer {
    background: #fff;
    border-top: 1px solid #e2e2e2;
    padding: 40px;
    color: #333;
    font-size: 15px;
}
.footer-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}
.footer-brand {
    flex: 1;
    min-width: 200px;
}
.footer-brand .logo {
    height: 36px;
    margin-bottom: 20px;
}
.footer-socials img {
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}
.footer-columns {
    display: flex;
    flex: 3;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul li a {
    color: #333;
    text-decoration: none;
}
.footer-col ul li a:hover {
    text-decoration: underline;
}
.discover-more a {
    font-weight: bold;
}
.footer-bottom {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}
.lang-select {
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.footer-bottom-links {
    display: flex;
    flex-direction: column;
}
.footer-bottom-links a {
    color: #333;
    font-size: 13px;
}
.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 1rem;
}

.footer-socials a {
  font-size: 1.5rem; /* Tamaño visual medio */
  color: #111;        /* Gris claro */
  transition: color 0.2s ease-in-out;
}

.footer-socials a:hover {
  color: #333;        /* Gris oscuro al pasar el mouse */
}








  .container {
      display: flex;
      gap: 60px;
      max-width: 1200px;
      margin: auto;
    }
    .left, .right {
      flex: 1;
    }
    .left h1 {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.1;
    }
    .left p {
      font-size: 1rem;
      margin: 20px 0;
      color: #444;
    }
    .brands img {
      height: 24px;
      margin-right: 15px;
      vertical-align: middle;
    }
    .quote {
      background: #f4f4f4;
      border-radius: 12px;
      padding: 24px;
      margin-top: 30px;
    }
    .quote h2 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .quote p {
      font-style: italic;
      line-height: 1.6;
      margin-bottom: 12px;
    }
    .quote small {
      font-size: 0.9rem;
      font-weight: 600;
    }
    form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    form input, form select, form textarea {
      padding: 14px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
      width: 100%;
    }


input[type="checkbox"] {
  width: 14px;
  height: 14px;
}
    form textarea {
      grid-column: span 2;
      min-height: 100px;
      resize: vertical;
    }
    .checkbox {
      grid-column: span 2;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.95rem;
    }
    .button-wrapper {
      grid-column: span 2;
    }
    button {
      background: #111;
      color: white;
      padding: 14px 28px;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
    }
    .footnote {
      margin-top: 20px;
      font-size: 0.85rem;
      color: #888;
      grid-column: span 2;
    }
    .footnote a {
      color: #555;
      text-decoration: underline;
    }

















@media (max-width: 991px) {
  .konverfy-text-xl {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

  .konverfy-title {
    font-size: 2rem;
  }

  .konverfy-grid {
    grid-template-columns: 1fr;
  }

  .footer-top, .footer-columns {
    flex-direction: column;
    gap: 20px;
  }

  .container {
    flex-direction: column;
    padding: 0 1rem;
  }

  form {
    grid-template-columns: 1fr;
  }

  .feature {
    flex-direction: column;
    gap: 40px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 20px 12px;
  }

  .konverfy-cards,
  .konverfy-feature-row,
  .konverfy-stats {
    padding: 1.5rem;
    grid-template-columns: 1fr;
  }

  .konverfy-section-3 {
    padding: 40px 16px;
  }
}

@media (max-width: 767px) {
  .konverfy-text-xl {
    font-size: 1.5rem;
    line-height: 1.6rem;
    text-align: center;
  }

  .konverfy-description,
  .konverfy-subtitle {
    font-size: 0.9rem;
    text-align: center;
    padding: 0 1rem;
  }

  .konverfy-logo-row {
    gap: 1rem;
    padding: 1rem;
  }

  .konverfy-box img {
    height: auto;
  }

  .footer {
    padding: 30px 20px;
  }

  .cta-free__content h2 {
    font-size: 1.8rem;
  }

  .cta-free__content p {
    font-size: 1rem;
  }

  .button-wrapper button {
    width: 100%;
  }
  .price-controls {
    justify-content: center;
    margin-top: 20px;
  }

}

