.enterprise-intro p {
  font-size: clamp(18px, 2vw, 20px);
  color: rgba(17, 17, 17, 0.85);
}

:root {
  --color-primario: #2563eb;
  --color-texto: #111;
  --color-fondo: #f9f9f9;
  --color-blanco: #fff;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-fondo);
  color: var(--color-texto);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: var(--color-blanco);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.topbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand span {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}

nav a {
  text-decoration: none;
  color: inherit;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-primario);
  transition: width 0.2s ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--color-primario);
}

nav a:hover::after,
nav a:focus-visible::after,
nav a[aria-current="page"]::after {
  width: 100%;
}

main {
  flex: 1;
  padding: 60px 24px 120px;
}

section {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--color-blanco);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 20px 45px -30px rgba(0, 0, 0, 0.25);
}

section h1,
section h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: 18px;
}

section p {
  margin-bottom: 16px;
}

section ul {
  margin-left: 20px;
  margin-bottom: 16px;
  list-style: disc;
}

.lead {
  font-size: clamp(18px, 2vw, 20px);
  margin-bottom: 32px;
  color: rgba(17, 17, 17, 0.85);
}

.cv-tips {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

.tip-card {
  background: linear-gradient(160deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.04));
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 24px 60px -45px rgba(37, 99, 235, 0.6);
  display: grid;
  gap: 18px;
}

.tip-card h3 {
  font-size: 24px;
}

.tip-card ul {
  margin: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
}

.tip-card li {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.tip-card li strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.enterprise-hero {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.02));
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.enterprise-intro {
  display: grid;
  gap: 20px;
}

.enterprise-intro h1 {
  font-size: clamp(32px, 4vw, 44px);
}

.enterprise-intro p {
  font-size: clamp(18px, 2vw, 20px);
  color: rgba(17, 17, 17, 0.85);
}

.enterprise-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.enterprise-visual img {
  width: min(420px, 100%);
  border-radius: 24px;
  box-shadow: 0 40px 80px -40px rgba(37, 99, 235, 0.45);
  position: relative;
  z-index: 1;
}

.circle-overlay {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(37, 99, 235, 0.3) 100%);
  filter: blur(0);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.16);
  color: var(--color-primario);
  font-weight: 600;
  font-size: 14px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-dark {
  background: #1a1a1a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 20px 40px -30px rgba(0, 0, 0, 0.6);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -32px rgba(0, 0, 0, 0.65);
}

.timeline {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 32px;
}

.timeline-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 24px 60px -45px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.timeline-step {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 32px;
  font-weight: 700;
  color: rgba(37, 99, 235, 0.18);
}

.pricing {
  text-align: center;
}

.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 32px 0 24px;
}

.pricing-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 26px 70px -50px rgba(0, 0, 0, 0.35);
  text-align: left;
  display: grid;
  gap: 16px;
}

.pricing-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pricing-card li {
  padding-left: 28px;
  position: relative;
}

.pricing-card li::before {
  content: "•";
  position: absolute;
  left: 10px;
  top: 0;
  color: var(--color-primario);
  font-size: 20px;
}

.pricing-card.highlight {
  background: linear-gradient(150deg, rgba(37, 99, 235, 0.16), rgba(37, 99, 235, 0.06));
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.callout {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  display: grid;
  gap: 18px;
  box-shadow: 0 24px 60px -40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.callout h2 {
  font-size: clamp(26px, 3vw, 32px);
}

.contact-pill {
  background: rgba(37, 99, 235, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact-pill .label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.6);
  margin-bottom: 4px;
}

.contact-pill a {
  font-weight: 600;
  color: var(--color-primario);
  text-decoration: none;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.contact-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 12px rgba(37, 99, 235, 0.35));
}

.contact-pill address {
  font-style: normal;
  font-weight: 600;
  color: var(--color-primario);
}

.contact-pill address a {
  color: inherit;
  text-decoration: none;
}

.btn-large {
  padding: 14px 28px;
  font-size: 16px;
}

.callout .btn {
  justify-content: center;
}

.callout .btn.btn-secondary {
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-primario);
}

.callout .btn + .btn {
  margin-top: 12px;
}

.steps-list {
  margin-left: 20px;
  margin-bottom: 16px;
  list-style-position: outside;
  display: grid;
  gap: 12px;
}

.section-actions {
  margin-top: 32px;
}

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

.card {
  background: rgba(37, 99, 235, 0.06);
  border-radius: 12px;
  padding: 24px;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px -30px rgba(37, 99, 235, 0.4);
}

.card--elevated {
  background: #fff;
  box-shadow: 0 20px 45px -35px rgba(0, 0, 0, 0.35);
}

.hero {
  display: block;
  position: relative;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 24px;
  margin-top: 0;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  display: block;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  padding: 32px 32px 0 32px;
  border-radius: 16px;
  backdrop-filter: blur(2px);
}

.hero-logo-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 50%);
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0.6;
}

.hero-logo {
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
  display: block;
  object-fit: contain;
  object-position: center;
}

.hero p {
  margin-bottom: 18px;
  line-height: 1.7;
  margin-top: 0;
}

.hero p:first-of-type {
  margin-top: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 48px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.btn-primary {
  background: var(--color-primario);
  color: var(--color-blanco);
  box-shadow: 0 14px 30px -20px rgba(37, 99, 235, 0.9);
}

.btn.btn-secondary {
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-primario);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -25px rgba(37, 99, 235, 0.9);
}

.blog-header {
  display: grid;
  gap: 28px;
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(165deg, rgba(37, 99, 235, 0.17), rgba(37, 99, 235, 0.03));
  box-shadow: 0 35px 80px -55px rgba(0, 0, 0, 0.35);
  margin-bottom: 48px;
}

.blog-header-copy {
  display: grid;
  gap: 16px;
}

.blog-header-copy h1 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 0;
}

.blog-header-copy p {
  margin: 0;
  max-width: 640px;
  color: rgba(17, 17, 17, 0.8);
}

.tag-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-strip span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--color-primario);
  font-weight: 600;
  font-size: 13px;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.15);
}

.blog-posts {
  margin-top: 48px;
}

.blog-posts h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: clamp(28px, 3vw, 34px);
}

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.06);
  color: var(--color-primario);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.filter-btn.is-active,
.filter-btn:hover,
.filter-btn:focus-visible {
  background: var(--color-primario);
  color: #fff;
  box-shadow: 0 16px 40px -30px rgba(37, 99, 235, 0.8);
  transform: translateY(-1px);
}

.post-list {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.post-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 30px 70px -55px rgba(0, 0, 0, 0.38);
  display: grid;
  gap: 16px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  position: relative;
  overflow: hidden;
}

.post-thumb {
  width: 100%;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px -45px rgba(0, 0, 0, 0.4);
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-card h3 {
  margin: 0;
  font-size: clamp(20px, 2.3vw, 26px);
}

.post-card a {
  color: inherit;
  text-decoration: none;
}

.post-card a:hover,
.post-card a:focus-visible {
  color: var(--color-primario);
}

.post-meta {
  display: grid;
  gap: 4px;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.7);
}

.post-card .post-category {
  font-weight: 600;
  color: var(--color-primario);
  text-transform: capitalize;
}

.post-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primario);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-link {
  justify-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-primario);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-link:hover,
.post-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px -25px rgba(37, 99, 235, 0.6);
}

.blog-article {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.blog-article h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  margin-bottom: 6px;
}

.blog-article p {
  margin: 0;
  color: rgba(17, 17, 17, 0.85);
}

.blog-article ul {
  margin: 0 0 16px 20px;
  list-style: disc;
  color: rgba(17, 17, 17, 0.85);
}

.blog-hero-image {
  margin: 36px auto 0;
  max-width: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px -55px rgba(0, 0, 0, 0.4);
}

.blog-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.comments-section {
  margin-top: 48px;
  display: grid;
  gap: 24px;
}

.comment-form {
  display: grid;
  gap: 16px;
}

.comment-form label {
  display: grid;
  gap: 8px;
}

.comments-list {
  display: grid;
  gap: 18px;
  border-top: 1px solid rgba(37, 99, 235, 0.2);
  padding-top: 24px;
}

.comments-empty {
  margin: 0;
  color: rgba(17, 17, 17, 0.6);
  font-style: italic;
}

.article-entry {
  display: none;
}

.article-entry.is-active {
  display: block;
}

.comment {
  background: #fff;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 24px 60px -50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.comment h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--color-primario);
}

.comment p {
  margin: 0;
  color: rgba(17, 17, 17, 0.85);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-grid label {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-grid label span {
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus-visible {
  outline: none;
  border-color: var(--color-primario);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

.form-feedback {
  margin: 0;
  font-weight: 600;
  text-align: left;
}

.form-feedback--success {
  color: #1c7c2f;
}

.form-feedback--error {
  color: #c62828;
}

.contact-layout {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-aside {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.contact-aside img {
  width: min(240px, 80%);
  height: auto;
}

.contact-aside h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

footer {
  background: #101010;
  color: #f1f1f1;
  padding: 40px 24px;
}

footer .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
}

footer a {
  color: #f1f1f1;
  text-decoration: none;
}

.footer-meta {
  display: grid;
  gap: 8px;
  min-width: 220px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-column ul {
  list-style: none;
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.footer-column a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: rgba(255, 255, 255, 0.75);
}

.footer-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mission-text {
  margin-top: 24px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 16px;
  }

  section {
    padding: 36px 24px;
  }
}

.btn-cta {
  background: #2563eb;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 18px 40px -22px rgba(37, 99, 235, 0.75);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px -20px rgba(37, 99, 235, 0.85);
  background: #1e4fdc;
}

@keyframes ctaPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2a2a2a;
  color: #f1f1f1;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  display: none;
  animation: slideUp 0.3s ease-out;
}

.cookie-banner.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 280px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner-text a {
  color: #f1f1f1;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cookie-btn-accept-all {
  background: #fbbf24;
  color: #1a1a1a;
}

.cookie-btn-accept-all:hover {
  background: #f59e0b;
  transform: translateY(-1px);
}

.cookie-btn-necessary {
  background: transparent;
  color: #f1f1f1;
  border: 1px solid #f1f1f1;
}

.cookie-btn-necessary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: #f1f1f1;
  border: none;
  text-decoration: underline;
}

.cookie-btn-settings:hover {
  color: #fbbf24;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  color: #111;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cookie-modal-header {
  margin-bottom: 24px;
}

.cookie-modal-header h2 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #111;
}

.cookie-modal-header p {
  font-size: 14px;
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.6;
}

.cookie-modal-header a {
  color: var(--color-primario);
  text-decoration: underline;
}

.cookie-category {
  padding: 20px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 16px;
  background: #fafafa;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category-header h3 {
  font-size: 18px;
  margin: 0;
  color: #111;
}

.cookie-category p {
  font-size: 14px;
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.cookie-toggle.active {
  background: #2563eb;
}

.cookie-toggle.disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle.active .cookie-toggle-slider {
  transform: translateX(24px);
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cookie-modal-btn-save {
  background: #2563eb;
  color: #fff;
  border: 1px solid #2563eb;
}

.cookie-modal-btn-save:hover {
  background: #1e4fdc;
}

.cookie-modal-btn-accept-all {
  background: #10b981;
  color: #fff;
  border: 1px solid #10b981;
}

.cookie-modal-btn-accept-all:hover {
  background: #059669;
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    min-width: 0;
  }

  .cookie-modal-content {
    padding: 24px;
  }

  .cookie-modal-actions {
    flex-direction: column;
  }

  .cookie-modal-btn {
    width: 100%;
  }
}

