:root {
  --bg: #050505;
  --surface: #111111;
  --surface-soft: rgba(255, 255, 255, 0.06);
  --text: #f5f2e8;
  --muted: #c7b68a;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.18);
  --border: rgba(212, 175, 55, 0.18);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 20%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 12%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

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

button,
a {
  font: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(15px, 2vw, 20px);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.brand-logo {
  width: 50px;
  max-width: 100%;
}

.footer-logo {
  width: 140px;
  max-width: 100%;
}

.brand h1 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand .eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

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

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

.main-nav a.cta {
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 1fr);
  gap: 54px;
  align-items: center;
  padding: 140px clamp(20px, 4vw, 48px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.16), transparent 180px),
    radial-gradient(circle at 85% 40%, rgba(255, 255, 255, 0.06), transparent 150px);
  pointer-events: none;
}

.hero-watermark {
  pointer-events: none;
  position: absolute;
  right: -5%;
  top: 8%;
  width: 420px;
  opacity: 0.06;
  transform: rotate(-6deg);
  animation: float 18s ease-in-out infinite;
}

.hero-watermark img {
  width: 100%;
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-label,
.split-copy .eyebrow,
.section-header span,
.testimonial-card .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold);
  font-size: 0.78rem;
}

.hero-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero-copy p {
  margin: 30px 0 36px;
  max-width: 660px;
  color: #d9d0af;
  font-size: 1.06rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, #d4af37, #f5e1a3);
  color: #07120c;
  box-shadow: 0 24px 55px rgba(212, 175, 55, 0.22);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.visual-frame {
  width: min(100%, 440px);
  padding: 42px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.05), var(--shadow);
  backdrop-filter: blur(18px);
}

.visual-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 26px;
}

.visual-title {
  margin: 0;
  font-size: clamp(1.75rem, 3.4vw, 2.4rem);
  line-height: 1.1;
  color: #fdf8e8;
}

.visual-text {
  margin: 26px 0 30px;
  color: #d9d0af;
  line-height: 1.85;
}

.visual-list {
  display: grid;
  gap: 14px;
}

.visual-list span {
  display: block;
  padding: 18px 22px;
  border-radius: 22px;
  color: #f7f2dd;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: -48px auto 0;
  max-width: 1120px;
  padding: 0 clamp(20px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

.hero-support>div {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-support strong {
  display: block;
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #f8edc5;
}

.hero-support p {
  margin: 0;
  color: #d6c69f;
}

.value-stripe {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 60px auto 0;
  max-width: 1120px;
  padding: 34px clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 32px;
}

.value-stripe div {
  padding: 30px;
  backdrop-filter: blur(16px);
}

.value-stripe strong {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--gold);
}

.value-stripe p {
  margin: 0;
  color: #d6c69f;
}

.cards-section {
  padding: 100px clamp(20px, 4vw, 48px);
}

.section-header {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-header h3 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 3vw, 2.85rem);
}

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

.card {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}

.card h4 {
  margin-top: 0;
  font-size: 1.3rem;
}

.card p {
  margin: 18px 0 0;
  color: #d6c69f;
}

.subcompanies-section {
  padding: 100px clamp(20px, 4vw, 48px);
}

.subcompanies-section .section-header h3 {
  margin-bottom: 28px;
}

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

.subcompany-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.subcompany-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.subcompany-card img {
  width: 120px;
  max-width: 100%;
  height: auto;
}

.subcompany-card span {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.split-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding: 100px clamp(20px, 4vw, 48px);
  align-items: start;
}

.split-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.split-copy p {
  color: #d6c69f;
  max-width: 640px;
}

.split-list {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step:hover {
  transform: translateY(-3px);
}

.step strong {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, #d4af37 0%, #f7d988 100%);
  color: #111;
  font-size: 1.1rem;
}

.step h4 {
  margin: 0 0 8px;
}

.step p {
  margin: 0;
  color: #d6c69f;
}

.testimonial-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 100px clamp(20px, 4vw, 48px);
}

.testimonial-card {
  padding: 38px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.testimonial-card.dark {
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.95), rgba(12, 12, 12, 0.88));
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card h3 {
  margin: 18px 0 16px;
}

.testimonial-card p {
  margin: 0;
  color: #d6c69f;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 84px clamp(20px, 4vw, 48px);
  margin: 0 auto;
  max-width: 1120px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
}

.final-cta h3 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.final-cta p {
  margin: 0;
  color: #d6c69f;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 40px clamp(20px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.site-footer h4 {
  margin: 0 0 10px;
}

.site-footer p {
  margin: 6px 0;
  color: #c8b884;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============================================
   CHATBOT IA - Grupo Empresarial 180°
   ============================================ */

.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

.chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050505;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.chatbot-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.chatbot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e53935;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.chatbot-window {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 48px);
  height: 520px;
  max-height: calc(100vh - 100px);
  background: #111111;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  visibility: hidden;
}

.chatbot-window.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.chatbot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
  color: #050505;
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-title {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chatbot-title strong {
  font-size: 15px;
}

.chatbot-title span {
  font-size: 12px;
  opacity: 0.8;
}

.chatbot-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #050505;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.chatbot-close:hover {
  opacity: 1;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}

.chatbot-message {
  display: flex;
  gap: 10px;
}

.chatbot-message.user {
  flex-direction: row-reverse;
}

.message-content {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
}

.chatbot-message.bot .message-content {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom-left-radius: 4px;
  color: #f5f2e8;
}

.chatbot-message.user .message-content {
  background: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
  color: #050505;
  border-bottom-right-radius: 4px;
}

.message-content p {
  margin: 0 0 10px;
}

.message-content p:last-child {
  margin-bottom: 0;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.quick-action {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-action:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: #d4af37;
}

.chatbot-input-area {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#chatbot-input {
  flex: 1;
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 25px;
  padding: 12px 18px;
  color: #f5f2e8;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

#chatbot-input:focus {
  border-color: #d4af37;
}

#chatbot-input::placeholder {
  color: #666;
}

.chatbot-send {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #050505;
  transition: all 0.2s ease;
}

.chatbot-send:hover {
  transform: scale(1.05);
}

.chatbot-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 14px 18px;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: #d4af37;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {

  0%,
  60%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .chatbot-widget {
    bottom: 16px;
    right: 16px;
  }

  .chatbot-window {
    width: calc(100vw - 32px);
    height: calc(100vh - 80px);
    bottom: 68px;
  }
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {

  0%,
  100% {
    transform: translate(-10%, 0) rotate(-6deg);
  }

  50% {
    transform: translate(-10%, 10px) rotate(-6deg);
  }
}

@media (max-width: 980px) {

  .hero,
  .split-section,
  .testimonial-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 90px;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    margin-top: 18px;
  }

  .hero-support,
  .value-stripe,
  .cards-grid,
  .testimonial-section,
  .service-buttons {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px clamp(20px, 4vw, 48px);
  }

  .hero-watermark {
    width: 280px;
    top: 10%;
    right: -12%;
  }
}

/* ============================================
   HERO FULL CAROUSEL
   ============================================ */
.hero-full-carousel {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.carousel-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 80px);
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  width: 100%;
  align-items: center;
}

.slide-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease 0.3s;
}

.carousel-slide.active .slide-copy {
  transform: translateY(0);
  opacity: 1;
}

.slide-copy h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
}

.slide-copy p {
  font-size: 1.1rem;
  color: #d9d0af;
  max-width: 500px;
  line-height: 1.6;
}

.slide-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 400px;
  transform: translateX(40px);
  opacity: 0;
  transition: all 0.8s ease 0.5s;
}

.carousel-slide.active .slide-visual {
  transform: translateX(0);
  opacity: 1;
}

.visual-glass-element {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 40px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.full-width-controls {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.carousel-dot:hover {
  background: rgba(212, 175, 55, 0.6);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.carousel-nav:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.carousel-nav.prev { left: 30px; }
.carousel-nav.next { right: 30px; }

@media (max-width: 900px) {
  .slide-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .slide-copy {
    align-items: center;
  }
  .slide-copy p {
    text-align: center;
  }
  .carousel-nav {
    display: none;
  }
  .slide-visual {
    min-height: 250px;
  }
}