* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #64748b;
  --accent-color: #f59e0b;
  --success-color: #10b981;
  --error-color: #ef4444;
  --warning-color: #f59e0b;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-white: #ffffff;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-dark: #0f172a;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --transition: all 0.3s ease;
  --font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
}
body {
  font-family: var(--font-family);
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--bg-primary);
}
section {
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  font-weight: 600;
}

/* HEADER: */
.header {
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.navbar {
  padding: 1.25rem 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.nav-container {
  border: 0px solid;
}
.nav-brand .logo {
  height: 40px;
  width: auto;
}
.logo {
  content-visibility: visible;
}
.nav-brand img:focus,
.nav-brand img:active {
  outline: none;
  box-shadow: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0.5rem;
  transition: background 0.2s;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 2, 0.3, 1);
  border: none;
}
.hamburger:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
.hamburger.active:focus,
.hamburger.noblur:focus {
  outline: none;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -7px);
}
.hamburger.show-outline:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin: 0;
  align-items: center;
}
.nav-link {
  color: var(--text-primary) !important;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
}
.nav-link:hover {
  color: var(--primary-color) !important;
}
.nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 56px;
  background-color: var(--primary-color);
  border-radius: 0;
}

/* HERO: */
.hero {
  padding: 8rem 0 4rem 0;
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text {
  border: 0px solid;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
.stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
}
.btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
  min-height: 44px;
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}
.btn-primary {
  background-color: var(--primary-color) !important;
  color: var(--text-white) !important;
  border: 2px solid var(--primary-color) !important;
}
.btn-primary:hover {
  background-color: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background-color: transparent !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
}
.btn-secondary:hover {
  background-color: var(--primary-color) !important;
  color: var(--text-white) !important;
}
.btn-outline {
  background-color: #fff0;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}
.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.hero-image img {
  width: 100%;
  height: auto;
}

/* SECTIONS: */
.section {
  border: 1px solid red;
}
.section-header {
  text-align: center;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}
.section-title,
.section-header h2,
.section-header h3 {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  margin-bottom: 1.5rem !important;
  margin-top: 2rem !important;
  letter-spacing: -0.5px !important;
}

/* PLANS PREVIEW: */
.plans-preview {
  padding: 2rem 0 3rem 0;
}
.plans-sources {
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.plan-card {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.plan-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.plan-card.featured {
  border-color: var(--primary-color);
  transform: scale(1.02);
  position: relative;
  z-index: 2;
}
.plan-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background-color: var(--success-color) !important;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 var(--border-radius-lg) 0 var(--border-radius);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10;
}
.plan-header {
  text-align: center;
  margin-bottom: 2rem;
}
.plan-name {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem 0;
}
.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.plan-price .currency {
  font-size: 1.25rem;
  color: var(--text-secondary);
}
.plan-price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
}
.plan-price .period {
  font-size: 1.1rem;
  color: var(--text-secondary);
}
.plan-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}
.plan-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.plan-features i {
  color: var(--success-color);
  font-size: 0.9rem;
}
.plan-features-detailed {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}
.plan-features-detailed li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.plan-features-detailed i {
  color: var(--success-color);
  font-size: 0.9rem;
}
.plan-savings {
  color: var(--success-color) !important;
  font-weight: 600;
}
.plan-note {
  padding-top: 1rem;
}

/* BLOG NEWS: */
.blog-news {
  background: var(--bg-secondary, #f8fafc);
  padding: 3rem 0 6rem 0;
}
.blog-news .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.blog-news ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-news-item {
  background: var(--bg-card, #fff);
  border-radius: var(--border-radius, 8px);
  box-shadow: 0 2px 12px rgba(51, 119, 203, 0.08);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 320px;
}
.blog-news-img {
  width: 100%;
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
  background: #e2e8f0;
  box-shadow: 0 1px 6px rgba(51, 119, 203, 0.07);
}
.blog-news-content .blog-news-date {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.blog-news-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color, #3377cb);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
  display: block;
  line-height: 1.3;
}
.blog-news-title:hover {
  color: var(--primary-dark, #2563eb);
  text-decoration: underline;
}

/* FOOTER: */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 8rem 0 4rem 0;
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-section {
  border: 0px solid;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}
.footer-logo img:focus,
.footer-logo img:active {
  outline: none;
  box-shadow: none;
}
.footer-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.footer-title {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--text-white);
}
.footer-social a {
  width: 45px;
  height: 45px;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--secondary-color);
  color: var(--text-muted);
}

/* WIDGETS: */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #20b358 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  z-index: 1001;
  text-decoration: none;
  color: var(--text-white);
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: var(--text-white);
  text-decoration: none;
}
.whatsapp-float:focus {
  outline: 2px solid var(--text-white);
  outline-offset: 2px;
}
.whatsapp-float .fab.fa-whatsapp {
  font-family: "Font Awesome 6 Brands";
  font-size: 2rem;
  color: var(--text-white);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.debug-fa {
  border: 0px solid;
}

/* PAGE HEADER: */
.page-header {
  padding: 8rem 0 4.5rem 0;
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
  text-align: center;
}
.page-header-plans {
  padding: 8rem 0 2.5rem;
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
  text-align: center;
}
.page-header {
  text-align: left;
  margin-top: 3rem;
}
.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

/* DOMAIN SEARCH: */
.domain-search {
  border: 1px solid red;
}
.domain-search-form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.domain-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1.2rem;
  border: 1px solid #d1d5db;
  border-radius: 8px 0 0 8px;
  outline: none;
}
.domain-input:focus {
  border-color: #2563eb;
}
.domain-input-group {
  display: flex;
  width: 100%;
  max-width: 500px;
}
.btn-search {
  border: 1px solid red;
}
.domain-result {
  margin-top: 1.5rem;
  text-align: center;
  min-height: 2.5rem;
}
.domain-available {
  color: #059669;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.domain-taken {
  color: #dc2626;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.loading {
  color: #2563eb;
}
.domain-howto {
  background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
  margin: 0 !important;
  padding: 1rem 1.5rem 2rem 1.5rem;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.domain-howto .howto-title {
  color: --text-primary;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.howto-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
.howto-step {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 #2563eb08;
  padding: 1.5rem 1rem 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
  border: 1px solid #e5e7eb;
}
.howto-step:hover {
  box-shadow: 0 6px 24px 0 #2563eb22;
  border-color: #2563eb33;
}
.howto-step-icon {
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  box-shadow: none;
}
.howto-step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #2563eb;
  text-align: center;
}
.howto-step-content p {
  color: #475569;
  font-size: 0.98rem;
  text-align: center;
  margin: 0;
}
.howto-anatomy-alt {
  background: #e0e7ef;
  color: #2563eb;
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  font-size: 1.08rem;
  display: inline-block;
  font-weight: 500;
  margin-top: 0.5rem;
}
.domain-why {
  background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
  margin: 0 !important;
  padding: 2rem 1.5rem 2rem 1.5rem;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.domain-why .why-title {
  color: --text-primary;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.why-list-simple {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-list-simple li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.08rem;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  background: none;
  border: none;
  padding: 0.5rem 0;
}
.why-list-simple li i {
  color: var(--primary-color);
  font-size: 1.3rem;
  min-width: 1.7em;
  text-align: left;
}
.why-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.why-benefit {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 #ea580c08;
  padding: 1.5rem 1rem 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #ffe6a0;
  transition: box-shadow 0.2s, border 0.2s;
}
.why-benefit-icon {
  background: #ea580c;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  box-shadow: none;
}
.why-benefit-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #ea580c;
  text-align: center;
}
.why-benefit-content p {
  color: #475569;
  font-size: 0.98rem;
  text-align: center;
  margin: 0;
}
.cta {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--text-white);
  text-align: center;
  padding: 4.5rem 0;
}
.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta .btn-primary {
  background-color: var(--text-white) !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--text-white) !important;
}
.cta .btn-primary:hover {
  background-color: var(--bg-secondary) !important;
  border-color: var(--bg-secondary) !important;
  color: var(--primary-color) !important;
}
.cta .btn-secondary {
  background-color: transparent !important;
  border-color: var(--text-white) !important;
  color: var(--text-white) !important;
}
.cta .btn-secondary:hover {
  background-color: var(--text-white) !important;
  color: var(--primary-color) !important;
}
.domain-check-form {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
}
.domain-check-form .btn {
  border-radius: 0 8px 8px 0;
  font-size: 1.2rem;
  padding: 0 2rem;
}

/* PLANS SECTION: */
.plans-grid-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.plan-card-detailed {
  background-color: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.plan-card-detailed:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.plan-card-detailed.featured {
  border-color: var(--primary-color);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.plan-card-detailed.enterprise {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--bg-card) 0%, #fefbf0 100%);
}
.plan-header-detailed {
  border: 1px solid red;
}
.plan-price-detailed {
  border: 1px solid red;
}
.plan-features-detailed {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}
.plan-features-detailed li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.plan-features-detailed i {
  color: var(--success-color);
  font-size: 0.9rem;
}
.plan-footer {
  text-align: center;
}

/* COMPARISON TABLE: */
.comparison-section {
  background-color: var(--bg-secondary);
  padding: 5rem 0;
}
.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}
.comparison-table {
  width: 100%;
  background-color: var(--bg-card);
  border-collapse: collapse;
  min-width: 800px;
}
.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}
.comparison-table th {
  background-color: var(--bg-secondary);
  font-weight: 600;
  color: var(--text-primary);
}
.comparison-table th.popular {
  background-color: var(--primary-color);
  color: #fff;
  position: relative;
}
.comparison-table th.popular::after {
  content: "Recomendo!";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}
.comparison-table th.popular {
  background-color: var(--primary-color);
  color: #fff;
  position: relative;
}
.comparison-table th.popular::after {
  content: "Recomendo!";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.billing-label {
  font-weight: 500;
  color: var(--text-secondary);
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.discount-badge {
  background-color: var(--success-color);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 0.5rem;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  transition: var(--transition);
  border-radius: 30px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  transition: var(--transition);
  border-radius: 50%;
}
input:checked + .slider {
  background-color: var(--primary-color);
}
input:checked + .slider:before {
  transform: translateX(30px);
}

/* FEATURES GRID: */
.features {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 100%
  );
  padding: 2rem 0 6rem 0;
}
.features-comparison {
  padding: 2.5rem 0 5.5rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card {
  background-color: var(--bg-card);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--text-white);
  font-size: 1.5rem;
}
.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.feature-description {
  color: var(--text-secondary);
}

/* CATEGORY TABS: */
.category-tabs .btn {
  min-width: 140px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgb(37 99 235 / 0.04);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.category-tabs .btn.active,
.category-tabs .btn:focus {
  box-shadow: 0 4px 16px rgb(37 99 235 / 0.1);
  border-color: var(--primary-color) !important;
  outline: none;
}

/* FAQ GRID: */
.faq-section {
  padding: 5rem 0;
}
.faq-initial-message {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin: 3rem 0;
}
.faq-grid {
  display: none;
}
.faq-grid.active {
  display: grid !important;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px #0001;
  margin-bottom: 1.5rem;
  border: 1px solid #e2e8f0;
  transition: box-shadow 0.2s, border 0.2s;
  overflow: hidden;
}
.faq-item.active {
  box-shadow: 0 4px 24px #2563eb22;
  border-color: #2563eb;
}
.faq-question-interactive {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  cursor: pointer !important;
  padding: 1.25rem 1.5rem !important;
  background: transparent !important;
  border: none !important;
  transition: all 0.2s ease !important;
  margin: 0 !important;
  width: 100% !important;
}
.faq-question-interactive:hover {
  background: var(--bg-secondary) !important;
}
.faq-question-interactive.active {
  background: var(--bg-secondary) !important;
  border-bottom: 1px solid var(--border-color) !important;
}
.faq-question-interactive h3 {
  margin: 0 !important;
  text-align: left !important;
  flex: 1 !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: var(--text-primary) !important;
}
.faq-question-interactive i {
  margin-left: 1rem !important;
  transition: transform 0.2s ease !important;
  color: var(--text-muted) !important;
  font-size: 0.9rem !important;
}
.faq-question-interactive:hover i {
  color: var(--primary-color) !important;
}
.faq-question-interactive.active i {
  transform: rotate(180deg) !important;
  color: var(--primary-color) !important;
}
.faq-item.active .faq-question-interactive {
  background: #e8f0fe;
  color: #2563eb;
}
.faq-question-interactive i {
  transition: transform 0.3s;
  font-size: 1.2em;
  color: #64748b;
}
.faq-item.active .faq-question-interactive i {
  transform: rotate(180deg);
  color: #2563eb;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 1.5rem;
  color: #475569;
  font-size: 1rem;
  transition: max-height 0.4s cubic-bezier(0.4, 2, 0.3, 1), padding 0.2s;
  text-align: left;
}
.faq-item.active .faq-answer {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  max-height: 700px;
  transition: max-height 0.5s cubic-bezier(0.4, 2, 0.3, 1), padding 0.2s;
}

/* CONTACT CTA: */
.cta-content {
  border: 1px solid var(--primary-shadow);
}
.cta-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* RESOURCES GRID: */
.resources-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem !important;
  padding: 0 !important;
  align-items: stretch !important;
  width: 100% !important;
}
.resource-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  margin-top: auto !important;
}
.resource-features li {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 0.5rem 0 !important;
  font-size: 0.98rem !important;
  color: var(--text-primary) !important;
}
.resource-features i {
  color: var(--primary-color) !important;
  font-size: 1rem !important;
  flex-shrink: 0 !important;
}
.resource-features .fa-check,
.resource-features .fa.fa-check {
  color: var(--success-color) !important;
}
.resource-card {
  text-align: left !important;
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  background-color: var(--bg-card) !important;
  box-shadow: var(--shadow-md) !important;
  border-radius: var(--border-radius-lg) !important;
  border: 1px solid var(--border-color) !important;
}
.resource-card h3 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  margin-bottom: 1rem !important;
  margin-top: 0 !important;
  text-align: left !important;
}
.resource-card p {
  color: var(--text-secondary) !important;
  font-size: 1rem !important;
  margin-bottom: 1.25rem !important;
  margin-top: 0 !important;
  line-height: 1.6 !important;
  min-height: 2.5rem !important;
  text-align: left !important;
}
.resource-icon {
  width: 56px !important;
  height: 56px !important;
  background: var(--primary-color) !important;
  color: var(--text-white) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.7rem !important;
  margin: 0 auto 1.2rem auto !important;
  box-shadow: 0 4px 16px rgb(37 99 235 / 0.1) !important;
  transition: box-shadow 0.2s, transform 0.2s;
}
.resource-icon i {
  color: var(--text-white) !important;
  font-size: 1.7rem !important;
}
.wordpress-features {
  padding: 5rem 0;
  background: linear-gradient(135deg, #21759b 0%, #1e6a8a 100%);
  color: #fff;
}
.wordpress-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.wordpress-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.wordpress-info p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}
.wordpress-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.wp-feature {
  background: rgb(255 255 255 / 0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 0.2);
  transition: var(--transition);
}
.wp-feature:hover {
  background: rgb(255 255 255 / 0.15);
  transform: translateY(-3px);
}
.wp-feature i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #f7b500;
}
.wp-feature h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.wp-feature p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}
.wordpress-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-badge {
  width: 200px;
  height: 200px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #21759b;
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.3);
  transition: var(--transition);
}
.wp-badge:hover {
  transform: scale(1.05);
}
.wp-badge i {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}
.wp-badge span {
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}
.tech-specs {
  padding: 2.5rem 0 5.5rem 0;
  background: #fff;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.spec-category {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.spec-category:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.spec-category h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  font-size: 1.25rem;
}
.spec-category h3 i {
  color: var(--primary-color);
  font-size: 1.5rem;
}
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spec-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}
.spec-list li:last-child {
  border-bottom: none;
}
.spec-list strong {
  color: var(--text-primary);
  margin-right: 0.5rem;
}

/* FAQ QUICK */
.faq-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0 2rem 0;
}
.faq-quick-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none !important;
  color: var(--text-primary) !important;
}
.faq-quick-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
  transform: translateY(-4px) scale(1.03);
  color: var(--primary-color) !important;
}
.faq-quick-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}
.faq-quick-card p {
  color: var(--text-secondary);
  font-size: 0.97rem;
  margin-bottom: 0;
}
.faq-icon {
  background: var(--primary-color);
  color: var(--text-white);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 16px rgb(37 99 235 / 0.1);
}
.faq-footer {
  gap: 2rem;
  padding: 1rem 0;
  text-align: center;
}
.whatsapp-contact {
  padding: 5rem 0 5rem 0;
  background: linear-gradient(135deg, #25d366 0%, #20b358 100%);
  color: #fff;
}
.whatsapp-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.whatsapp-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.whatsapp-card {
  background: rgb(255 255 255 / 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.whatsapp-card:hover {
  background: rgb(255 255 255 / 0.15);
  transform: translateY(-5px);
}
.whatsapp-icon {
  width: auto;
  height: 60px;
  background: rgb(255 255 255 / 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding: 0 1.5rem;
}
.whatsapp-icon span {
  font-size: 1.25rem;
  font-weight: 700;
}
.whatsapp-details h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.whatsapp-details p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  color: #25d366;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}
.btn-whatsapp:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgb(0 0 0 / 0.2);
  color: #20b358;
}
.whatsapp-qr {
  text-align: center;
}
.qr-container {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgb(0 0 0 / 0.1);
  transition: all 0.3s ease;
}
.qr-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgb(0 0 0 / 0.15);
}
.qr-container h4 {
  color: #333;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.qr-code {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.qr-code img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}
.qr-info {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* LEGAL: */
.legal-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: left;
  line-height: 1.8;
}
.legal-section {
  margin-bottom: 40px;
}
.legal-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 3rem 0 1.5rem 0;
  padding-bottom: 0.75rem;
}
.legal-section-title:first-child {
  margin-top: 0;
}
.legal-highlight {
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--primary-color);
}
.empresa-hist h3 i {
  color: #3498db;
  margin-right: 10px;
}
.legal-list {
  list-style: none;
  padding-left: 0;
}
.legal-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}
.legal-list li i {
  color: #3498db;
  position: absolute;
  left: 0;
  top: 15px;
}
.legal-contact-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}
.legal-contact-box h4 {
  color: #2c3e50;
  margin-bottom: 15px;
}
.legal-contact-box p {
  margin: 0;
  font-size: 16px;
}
.legal-contact-box a {
  color: #3498db;
  text-decoration: none;
}
.legal-contact-box a:hover {
  text-decoration: underline;
}
.data-collection,
.privacy-section,
.privacy-intro {
  border: 1px solid white;
}
.contact-info {
  border: 1px solid #f8f9fa;
}
.legal-intro {
  font-size: 16px;
  margin-bottom: 25px;
}
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.glossary-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid #3498db;
}
.glossary-item h4 {
  color: #3498db;
  margin-bottom: 10px;
  font-size: 18px;
}
.glossary-item p {
  margin: 0;
  font-size: 14px;
  color: #555;
}
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.data-category {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
}
.data-category h4 {
  color: #3498db;
  margin-bottom: 15px;
  font-size: 18px;
}
.data-category ul {
  margin: 0;
  padding-left: 20px;
  color: #555;
}
.legal-date {
  color: #7f8c8d;
  font-style: italic;
  margin-top: 30px;
}
