/*.btn {
  display: inline-block;
  padding: 0.9rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-secondary {
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

.card {
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}

.hero-placeholder {
  width: 420px;
  height: 320px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  border-radius: 16px;
}

.language-switcher ul {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}*/



.site-branding {
  display: flex;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-actions .btn {
  margin-left: 0.5rem;
}

/*max-height: 120px;*/
.site-branding img {
  max-height: 85px;
  width: auto;
  display: block;
}

.site-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--color-accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.22);
}

/*.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}*/

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  background: #fff;
}

.btn-secondary:hover {
  background: #eff6ff;
}

.hero-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.hero-content {
  max-width: 640px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.75rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

/*.hero-placeholder {
  width: 100%;
  max-width: 480px;
  min-height: 420px;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,0.14), transparent 38%),
    linear-gradient(135deg, #dbeafe, #eff6ff 55%, #ffffff);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.6);
}*/

/*.hero-placeholder {
  width: 100%;
  max-width: 480px;
  min-height: 420px;
  border-radius: 28px;

  background:
    radial-gradient(circle at top left, rgba(37,99,235,0.25), transparent 40%),
    radial-gradient(circle at bottom right, rgba(15,23,42,0.15), transparent 50%),
    linear-gradient(135deg, #e0ecff, #f8fafc);

  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}*/

.hero-placeholder {
  width: 100%;
  max-width: 480px;
  min-height: 420px;
  border-radius: 28px;
  padding: 2rem;

  background:
    linear-gradient(135deg, #e0ecff, #f8fafc);

  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* simulación de bloques internos */
.hero-placeholder::before,
.hero-placeholder::after {
  content: "";
  display: block;
  border-radius: 10px;
}

.hero-placeholder::before {
  height: 60px;
  background: #2563eb;
  opacity: 0.2;
}

.hero-placeholder::after {
  height: 200px;
  background: #0f172a;
  opacity: 0.08;
}

/*transition: transform 0.25s ease, box-shadow 0.25s ease; */
.card {
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/*.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}*/

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.services-section,
.trust-section,
.cta-section {
  background: transparent;
}

.cta-section .container {
  padding: 2.5rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #081a2f, #0f2b4a);
  box-shadow: var(--shadow-soft);
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

.cta-section .btn-primary {
  background: #fff;
  color: var(--color-primary);
  box-shadow: none;
}

.cta-section .btn-primary:hover {
  background: #f8fafc;
}

.services-section h2,
.trust-section h2 {
  margin-bottom: 0.5rem;
}

.services-section p,
.trust-section p {
  margin-bottom: 2rem;
}

.site-footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--color-border);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .main-nav {
    justify-content: center;
  }

  .header-actions {
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 100%;
  }
}

.language-switcher {
  position: relative;
}

.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid #dcdcdc;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  min-width: 78px;
}

.lang-toggle img,
.lang-menu img {
  display: block;
  border-radius: 2px;
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 0.35rem 0;
  margin: 0;
  list-style: none;
  min-width: 96px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  z-index: 999;
}

.lang-menu li {
  margin: 0;
  padding: 0;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
}

.lang-menu a:hover {
  background: #f5f5f5;
}

.lang-dropdown:hover .lang-menu,
.lang-dropdown:focus-within .lang-menu {
  display: block;
}
