:root {
  --ink: #1E3A5F;
  --ink-soft: #2E4A6B;
  --accent: #E8732C;
  --paper: #FAF7F2;
  --paper-deep: #F1ECE3;
  --text-muted: #6B6B63;
  --line: rgba(30, 58, 95, 0.12);

  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;

  --container: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 400; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a { color: var(--ink); text-decoration: none; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 1rem;
}
.eyebrow.center { text-align: center; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.nav a:hover { color: var(--accent); }

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--accent); color: var(--paper) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text h1 { margin: 0 0 24px; }

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff !important;
}
.btn-primary:hover {
  background: #d2611c;
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink) !important;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper) !important;
}

.hero-portrait {
  position: relative;
}

.portrait-frame {
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  position: relative;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait-placeholder img { display: none; }
.portrait-placeholder::after {
  content: "Foto de Luis Tesolat";
  font-family: var(--font-display);
  color: var(--ink-soft);
  font-size: 1.1rem;
  opacity: 0.5;
}

.portrait-tag {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ===== SHIFT / SIGNATURE SECTION ===== */
.shift {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0;
}

.shift h2 {
  color: var(--paper);
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
}

.shift .eyebrow { color: var(--accent); }

.shift-dialogue {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
}

.shift-before, .shift-after {
  padding: 32px;
  border-radius: 8px;
}

.shift-before {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.shift-after {
  background: rgba(232, 115, 44, 0.12);
  border: 1px solid rgba(232, 115, 44, 0.3);
}

.shift-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  color: rgba(250,247,242,0.5);
}
.shift-after .shift-label { color: var(--accent); }

.shift-before p, .shift-after p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  color: var(--paper);
}

.shift-arrow {
  font-size: 1.8rem;
  color: var(--accent);
  text-align: center;
}

.shift-note {
  text-align: center;
  max-width: 600px;
  margin: 56px auto 0;
  color: rgba(250,247,242,0.7);
  font-size: 1rem;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
}

.about-text h2 { margin-bottom: 24px; max-width: 700px; }

.about-text p {
  color: var(--text-muted);
  max-width: 760px;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  max-width: 900px;
}

.credential-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.credential-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.about-history {
  background: var(--paper-deep);
  border-radius: 12px;
  padding: 40px;
  margin-top: 56px;
}

.about-history h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.about-history-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-history p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.history-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}
.history-stats li {
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.history-stats strong {
  font-family: var(--font-display);
  color: var(--ink);
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
}

.services-empresas {
  background: var(--paper-deep);
}

.services h2 { max-width: 600px; margin-bottom: 16px; }

.services-intro {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1.05rem;
  margin-bottom: 56px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-grid-edu {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.services-empresas .service-card { background: var(--paper); }
.services-educacion .service-card { background: var(--paper-deep); border-color: transparent; }

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--ink);
  color: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact h2 { color: var(--paper); margin-bottom: 16px; }
.contact .eyebrow { color: var(--accent); }
.contact-text p { color: rgba(250,247,242,0.75); max-width: 440px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.contact-link {
  color: var(--paper) !important;
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(250,247,242,0.2);
  padding-bottom: 8px;
  width: fit-content;
}
.contact-link:hover { color: var(--accent) !important; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(250,247,242,0.7);
  margin-top: 12px;
}
.contact-form label:first-child { margin-top: 0; }

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.contact-form .btn { margin-top: 20px; align-self: flex-start; }

/* ===== FOOTER ===== */
.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== LOGOS CARRUSEL ===== */
.logos-section {
  padding: 80px 0;
  background: #ffffff;
  overflow: hidden;
}

.logos-section h2 { margin-top: 8px; margin-bottom: 48px; }

.logos-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: logos-scroll 30s linear infinite;
}

.logos-track:hover { animation-play-state: paused; }

@keyframes logos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-item {
  flex: 0 0 auto;
  width: 140px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  opacity: 0.9;
  padding: 10px;
  box-sizing: border-box;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-item:hover { opacity: 1; }

.logo-placeholder {
  width: 140px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== WHY DIFFERENT ===== */
.why-different {
  padding: 100px 0;
}

.why-different h2 {
  max-width: 600px;
  margin-bottom: 56px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--accent);
}

.why-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ===== EDU COMMUNITY ===== */
.edu-community {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.edu-community h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.edu-community > p {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 40px;
}

.edu-community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.edu-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.edu-community-item h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.edu-community-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== CASES ===== */
.cases {
  padding: 100px 0;
  background: var(--paper-deep);
}

.cases h2 { max-width: 600px; margin-bottom: 16px; }

.cases-subhead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin: 56px 0 8px;
  color: var(--ink);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.case-grid-edu-cases {
  grid-template-columns: repeat(2, 1fr);
}

.case-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
}

.case-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.case-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.case-row {
  margin-bottom: 12px;
}

.case-row strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.case-row p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== FIRST STEP ===== */
.first-step {
  padding: 90px 0;
  background: var(--ink);
  color: var(--paper);
}

.first-step-grid {
  max-width: 720px;
}

.first-step h2 {
  color: var(--paper);
  margin-bottom: 20px;
}

.first-step .eyebrow { color: var(--accent); }

.first-step p {
  color: rgba(250,247,242,0.78);
}

.first-step-highlight {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--paper) !important;
  margin: 24px 0 28px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 200;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ===== FOOTER SOCIAL ===== */
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: var(--ink-soft);
  display: flex;
}
.footer-social a:hover { color: var(--accent); }


@media (max-width: 860px) {
  /* NAV MOBILE */
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 24px;
    z-index: 200;
  }
  .nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 12px; text-align: center; width: 100%; display: block; }
  .nav.nav-open { display: flex; }
  .nav-toggle { display: flex; }

  /* HERO */
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 40px 0 56px; }
  .hero-portrait { order: -1; max-width: 320px; margin: 0 auto; }
  .hero-text h1 { font-size: 2.4rem; }

  /* SHIFT */
  .shift-dialogue { grid-template-columns: 1fr; }
  .shift-arrow { transform: rotate(90deg); text-align: center; }

  /* ABOUT - fix overflow */
  .about-grid { grid-template-columns: 1fr !important; gap: 32px !important; padding-top: 40px !important; }
  .about-image { display: none !important; }
  .about-text { width: 100% !important; max-width: 100% !important; min-width: 0; overflow: hidden; }
  .about-text h2 { word-break: break-word; overflow-wrap: break-word; font-size: 1.8rem; }
  .about-text p { word-break: break-word; overflow-wrap: break-word; }
  .about-stats { grid-template-columns: 1fr; gap: 16px; }
  .ined-stats { grid-template-columns: 1fr; gap: 12px; }

  /* SERVICIOS */
  .service-grid,
  .service-grid-edu { grid-template-columns: 1fr; gap: 16px; }
  .service-card-dark { padding: 20px; }

  /* FOTOS STRIP */
  .services-photo-strip {
    display: grid !important;
    grid-template-columns: 1fr !important;
    height: auto;
    margin-top: 32px;
  }
  /* En mobile mostrar solo la primera foto */
  .services-photo:not(:first-child) { display: none; }
  .services-photo { height: 220px; object-position: center center; }

  /* EDU COMMUNITY */
  .edu-community-grid { grid-template-columns: 1fr; }

  /* WHY - 1 columna en mobile como servicios */
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-item { padding: 20px; }

  /* CASOS */
  .case-grid,
  .case-grid-edu-cases { grid-template-columns: 1fr; }

  /* LOGOS */
  .logos-track { gap: 24px; }
  .logo-item { width: 100px; height: 80px; }

  /* CONTACTO */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* FOOTER */
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-social { order: -1; }

  /* WHATSAPP */
  .whatsapp-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
}

@media (max-width: 540px) {
  .hero-text h1 { font-size: 2rem; }
  .service-grid,
  .service-grid-edu { grid-template-columns: 1fr; }
  /* 1 columna en mobile chico para diferenciales */
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; }
  h2 { font-size: 1.8rem; }
  /* Fix overflow general */
  * { max-width: 100%; }
  .container { overflow: hidden; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .service-card:hover, .btn:hover { transform: none; }
  .logos-track { animation: none; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== NUEVOS ESTILOS: TARJETAS DARK, FOTOS, ABOUT ===== */

/* About con foto */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
  padding-top: 80px;
  padding-bottom: 48px;
  min-width: 0;
}

.about-grid > * { min-width: 0; }

.about-photo {
  width: 100%;
  height: 750px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(30,58,95,0.18);
}

@media (max-width: 860px) {
  .about-photo { display: none !important; height: 0 !important; }
  .about-image { display: none !important; width: 0 !important; height: 0 !important; overflow: hidden !important; margin: 0 !important; padding: 0 !important; }
}

/* Service cards dark */
.service-card-dark {
  background: var(--ink) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 14px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--paper);
}

.service-card-dark:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(30,58,95,0.25);
  border-color: var(--accent) !important;
}

.service-card-dark h3 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.service-card-dark p {
  color: rgba(250,247,242,0.72);
  font-size: 0.92rem;
  margin: 0;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

/* Secciones con fondo azul oscuro para empresas */
.services-empresas {
  background: #0f2340 !important;
  padding-bottom: 0 !important;
}

.services-empresas .eyebrow { color: var(--accent); }
.services-empresas h2 { color: #ffffff; }
.services-empresas .services-intro { color: rgba(250,247,242,0.7); }

/* Sección educación con fondo azul más suave */
.services-educacion {
  background: var(--ink) !important;
  padding-bottom: 0 !important;
}
.services-educacion .eyebrow { color: var(--accent); }
.services-educacion h2 { color: #ffffff; }
.services-educacion .services-intro { color: rgba(250,247,242,0.7); }

/* EDU community en dark */
.services-educacion .edu-community {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 60px;
  padding-top: 60px;
}
.services-educacion .edu-community h3 { color: #ffffff; }
.services-educacion .edu-community > p { color: rgba(250,247,242,0.7); }
.services-educacion .edu-community-item h4 { color: #ffffff; }
.services-educacion .edu-community-item p { color: rgba(250,247,242,0.65); }
.services-educacion .edu-number { color: var(--accent); }

/* Photo strip debajo de servicios */
.services-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  height: 320px;
  overflow: hidden;
}

.services-empresas .services-photo-strip {
  grid-template-columns: repeat(3, 1fr);
}

.services-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.3s ease;
}

.services-photo:hover {
  filter: brightness(1);
}

/* Why section más azul */
.why {
  background: var(--paper-deep);
  padding: 80px 0;
}

.why .eyebrow { text-align: center; }
.why h2 { text-align: center; margin-bottom: 56px; }

.why-item {
  background: var(--ink);
  border-radius: 14px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s ease;
}

.why-item:hover { transform: translateY(-4px); }

.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.why-item p {
  color: rgba(250,247,242,0.7);
  font-size: 0.92rem;
  margin: 0;
}

/* Casos con fondo blanco limpio */
.cases {
  background: #ffffff;
}

/* Primer paso con acento azul */
.first-step {
  background: var(--ink);
}
.first-step h2, .first-step p { color: var(--paper); }
.first-step .eyebrow { color: var(--accent); }
.first-step-highlight {
  color: rgba(250,247,242,0.8) !important;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin: 24px 0;
}

/* fin estilos */
