:root {
  --bg: #08101f;
  --surface: rgba(15, 25, 42, 0.94);
  --surface-soft: rgba(15, 25, 42, 0.78);
  --text: #f8fbff;
  --muted: #9fb3ce;
  --primary: #6b7dff;
  --primary-dark: #4a5dcb;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 30px 80px rgba(1, 9, 29, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  background: radial-gradient(circle at top, rgba(107,125,255,0.18), transparent 25%),
    linear-gradient(180deg, #06101f 0%, #070f1f 36%, #08101f 100%);
  color: var(--text);
  line-height: 1.75;
}

img {
  max-width: 100%;
  display: block;
}

button,
a {
  font: inherit;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7, 13, 25, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: white;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 6rem;
  display: block;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.65rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  gap: 1.6rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: white;
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.hero-copy p {
  margin: 1.5rem 0 2.5rem;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: none;
  border-radius: 999px;
  padding: 1rem 1.8rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-icon {
  width: 1.1rem;
  height: 1.1rem;
  min-width: 1.1rem;
  color: white;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, #6678ff, #3f52f0);
  color: white;
  box-shadow: 0 18px 40px rgba(76, 103, 255, 0.32);
}

.secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats div {
  padding: 1.25rem 1.35rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-stats strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.hero-visual {
  display: grid;
  gap: 1.5rem;
  justify-items: end;
  position: relative;
}

.hero-illustration {
  display: grid;
  gap: 1rem;
  width: 100%;
}

.hero-card {
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 50px rgba(1, 9, 29, 0.18);
  animation: float 6s ease-in-out infinite;
}

.hero-card-dashboard {
  background: linear-gradient(180deg, rgba(104, 166, 255, 0.14), rgba(51, 80, 255, 0.06));
}

.hero-card-data {
  background: linear-gradient(180deg, rgba(114, 99, 255, 0.14), rgba(66, 53, 236, 0.06));
}

.hero-card-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  color: white;
  font-weight: 800;
  margin-bottom: 1rem;
}

.premium-card {
  width: 100%;
  min-height: 320px;
  padding: 2.5rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  animation: glow 8s ease-in-out infinite alternate;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  from { box-shadow: 0 30px 80px rgba(1, 9, 29, 0.25); }
  to { box-shadow: 0 30px 90px rgba(98, 114, 255, 0.32); }
}

.premium-card h2 {
  margin-top: 0;
  font-size: 2rem;
}

.premium-card p {
  margin: 1rem 0 1.5rem;
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pill-list span {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(107, 125, 255, 0.12);
  color: #d4deff;
  font-size: 0.95rem;
}

.services,
.about,
.contact,
.privacy {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin: 1rem 0 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 20px 50px rgba(1, 9, 29, 0.2);
}

.service-card h3 {
  margin-top: 0;
}

.service-card p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.services-banner {
  margin-top: 3rem;
  padding: 1.25rem 2rem;
  border-radius: 60px;
  background: linear-gradient(90deg, rgba(30, 60, 130, 0.5), rgba(99, 179, 237, 0.25), rgba(30, 60, 130, 0.5));
  border: 1px solid rgba(99, 179, 237, 0.3);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.services-banner p {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
  animation: marquee-glow 3s ease-in-out infinite;
  margin: 0;
}

@keyframes marquee-glow {
  0%, 100% { text-shadow: 0 0 10px rgba(99, 179, 237, 0.4); }
  50% { text-shadow: 0 0 25px rgba(99, 179, 237, 0.9), 0 0 50px rgba(99, 179, 237, 0.4); }
}

.blog {
  padding-top: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 45px rgba(1, 9, 29, 0.18);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(107, 125, 255, 0.3);
}

.blog-image {
  width: 100%;
  height: 170px;
  border-radius: 24px;
  margin-bottom: 1.2rem;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-image-ai {
  background-image: radial-gradient(circle at top left, rgba(107, 125, 255, 0.32), transparent 30%),
    linear-gradient(135deg, rgba(58, 74, 255, 0.3), rgba(5, 17, 37, 0.7));
}

.blog-image-chat {
  background-image: radial-gradient(circle at top right, rgba(97, 213, 125, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(26, 32, 47, 0.9), rgba(16, 24, 44, 0.8));
}

.blog-image-form {
  background-image: radial-gradient(circle at bottom left, rgba(255, 186, 87, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(18, 24, 44, 0.9), rgba(9, 16, 31, 0.8));
}

.link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.link:hover {
  text-decoration: underline;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.about-grid h2 {
  margin-top: 0;
}

.about-grid ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.about-grid li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.about-grid li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}

.about-feature {
  padding: 2.5rem;
  border-radius: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.mockups-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.mockup-card,
.workflow-step,
.client-card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 45px rgba(1, 9, 29, 0.18);
}

.mockup-image {
  width: 100%;
  min-height: 200px;
  border-radius: 24px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.04);
}

.mockup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mockup-dashboard {
  background-image: radial-gradient(circle at top left, rgba(107, 125, 255, 0.24), transparent 35%),
    linear-gradient(135deg, rgba(20, 35, 70, 0.96), rgba(10, 16, 31, 0.96));
}

.mockup-chat {
  background-image: radial-gradient(circle at top right, rgba(97, 213, 125, 0.25), transparent 35%),
    linear-gradient(135deg, rgba(12, 24, 48, 0.96), rgba(5, 12, 25, 0.96));
}

.mockup-form {
  background-image: radial-gradient(circle at bottom left, rgba(255, 186, 87, 0.25), transparent 35%),
    linear-gradient(135deg, rgba(13, 21, 40, 0.96), rgba(8, 15, 30, 0.96));
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.workflow-step {
  display: grid;
  gap: 1rem;
}

.step-image {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.step-number {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(107, 125, 255, 0.18);
  color: white;
  font-weight: 700;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.client-card p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.8;
}

.client-card strong {
  display: block;
  margin-bottom: 0.25rem;
}

.form-note {
  margin: 1rem 0 0.75rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.contact-panel,
.contact-card,
.privacy-card {
  padding: 2.5rem;
  border-radius: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(1, 9, 29, 0.2);
}

.contact-panel h2,
.privacy-card h2,
.contact-card h3 {
  margin-top: 0.5rem;
}

.contact-panel p,
.privacy-card p {
  color: var(--muted);
}

.contact-links {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card form,
.privacy-card ul {
  margin-top: 1.75rem;
}

.contact-card form {
  display: grid;
  gap: 1rem;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: white;
  padding: 1rem 1.1rem;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

.privacy-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.privacy-card li {
  padding-left: 1.35rem;
  position: relative;
  color: var(--muted);
}

.privacy-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.site-footer {
  padding: 2.25rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  color: var(--muted);
}

.footer-inner strong {
  color: white;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    background: rgba(7, 13, 25, 0.98);
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav a {
    padding: 0.85rem 0;
  }
}

@media (max-width: 768px) {
  .hero-grid,
  .blog-grid,
  .mockups-grid,
  .service-grid,
  .workflow-grid,
  .about-grid,
  .clients-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero-card-icon {
    width: 2.7rem;
    height: 2.7rem;
    font-size: 0.9rem;
  }
  .blog-image {
    height: 150px;
  }
}


/* ── Hero: Agentes de Voz Inteligentes ── */
.voice-agents-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 50%, rgba(30, 60, 130, 0.35) 0%, transparent 70%),
              radial-gradient(ellipse at 10% 80%, rgba(99, 179, 237, 0.1) 0%, transparent 50%);
}

.voice-agents-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a90d9' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.voice-agents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.voice-agents-copy h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 40%, #63b3ed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.voice-agents-copy p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 520px;
}

.voice-tagline {
  font-style: italic;
  color: rgba(99, 179, 237, 0.85) !important;
}

.voice-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.voice-agents-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.voice-agents-image::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 179, 237, 0.12) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.7; }
}

.voice-agents-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(99, 179, 237, 0.4);
  box-shadow: 0 0 80px rgba(99, 179, 237, 0.25), 0 0 160px rgba(30, 60, 130, 0.2);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .voice-agents-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .voice-agents-image {
    order: -1;
  }
  .voice-agents-image img {
    max-width: 320px;
  }
}

/* ── Animaciones de entrada escalonada ── */
.service-card,
.mockup-card,
.workflow-step,
.client-card,
.blog-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.service-card.card-visible,
.mockup-card.card-visible,
.workflow-step.card-visible,
.client-card.card-visible,
.blog-card.card-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Cursor personalizado ── */
.cursor-glow {
  position: fixed;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(99, 179, 237, 0.5);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}

.cursor-glow.cursor-large {
  width: 40px;
  height: 40px;
  background: rgba(99, 179, 237, 0.25);
}

/* ── Partículas hero ── */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(99, 179, 237, 0.6);
  pointer-events: none;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(0) scale(1); opacity: 0.6; }
  50% { opacity: 0.2; transform: translateY(-60px) scale(1.3); }
  100% { transform: translateY(-120px) scale(0.8); opacity: 0; }
}

/* ── Botones con efecto ripple ── */
.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: inherit;
}

.button:hover::after {
  transform: scaleX(1);
}

/* ── Imágenes de pasos con zoom al hover ── */
.step-image img {
  transition: transform 0.4s ease;
}

.workflow-step:hover .step-image img {
  transform: scale(1.05);
}

/* ── Cintilla con animación de brillo deslizante ── */
.services-banner {
  position: relative;
  overflow: hidden;
}

.services-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 150%; }
}

/* ── Logo con brillo al hover ── */
.brand-logo {
  transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-logo:hover {
  filter: drop-shadow(0 0 12px rgba(99, 179, 237, 0.8));
  transform: scale(1.05);
}

/* ── Sección reveal con slide ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Modal Política de Privacidad ── */
.privacy-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.privacy-modal.open {
  display: flex;
  animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.privacy-modal-box {
  background: rgba(12, 20, 40, 0.98);
  border: 1px solid rgba(99, 179, 237, 0.25);
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 560px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 60px rgba(99, 179, 237, 0.15);
  animation: slideUpModal 0.3s ease;
}

@keyframes slideUpModal {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.privacy-modal-box h2 {
  margin-top: 0;
  color: #fff;
}

.privacy-modal-box p,
.privacy-modal-box li {
  color: var(--text-muted);
  line-height: 1.75;
}

.privacy-modal-box ul {
  padding-left: 1.25rem;
}

.privacy-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.privacy-close:hover {
  color: #fff;
}

.footer-privacy {
  color: rgba(99, 179, 237, 0.7);
  text-decoration: none;
  margin-left: 0.5rem;
  transition: color 0.2s;
}

.footer-privacy:hover {
  color: rgba(99, 179, 237, 1);
  text-decoration: underline;
}

/* ── Foto CEO ── */
.ceo-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(99, 179, 237, 0.4);
  box-shadow: 0 0 40px rgba(99, 179, 237, 0.2);
  margin-bottom: 1.25rem;
}

.ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.ceo-title {
  color: rgba(99, 179, 237, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0.25rem 0 1rem;
}
