/* ==============================
   DAP Website - GitHub Pages
   Autor: Uriel + Motoko
   ============================== */

:root {
  --bg: #061421;
  --bg-soft: #0b2236;

  --blue: #009fe8;
  --blue-light: #20c4ff;
  --cyan: #00b8c8;
  --green: #42c928;
  --green-soft: #20e2a3;

  --primary: #00aaff;
  --primary-2: #20e2a3;
  --accent: #42c928;

  --text: #f7fbff;
  --muted: #d6e7f2;

  --card: rgba(5, 24, 39, 0.66);
  --card-strong: rgba(7, 35, 56, 0.82);
  --border: rgba(32, 196, 255, 0.30);

  --shadow: 0 26px 80px rgba(0, 170, 255, 0.20);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0,159,232,.30), transparent 34%),
    radial-gradient(circle at top right, rgba(66,201,40,.22), transparent 32%),
    linear-gradient(135deg, #061421 0%, #081b2c 48%, #041018 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ==============================
   NAVBAR
   ============================== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 7%;
  background: rgba(4, 18, 28, 0.72);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(32, 196, 255, 0.18);
  transition: 0.3s ease;
}

.navbar.scrolled {
  background: rgba(4, 18, 28, 0.94);
  border-bottom-color: rgba(66, 201, 40, 0.28);
  box-shadow: 0 12px 40px rgba(0, 170, 255, 0.14);
}

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

.brand-logo { width: 68px; 
             max-height: 48px; 
             object-fit: contain; 
             filter: drop-shadow(0 8px 18px rgba(23, 183, 255, 0.22)); }

.brand-text {
  color: #d8f8ff;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
  color: #c7eaf1;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(66, 201, 40, 0.60);
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(0, 170, 255, 0.30), rgba(32, 226, 163, 0.24));
  box-shadow: 0 0 24px rgba(0, 184, 200, 0.22);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 36px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--text);
  border-radius: 2px;
}

/* ==============================
   FONDOS DE SECCIONES
   ============================== */

.section-bg {
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4,18,28,.72), rgba(4,18,28,.46), rgba(4,18,28,.24)),
    radial-gradient(circle at 20% 30%, rgba(0,170,255,.22), transparent 36%),
    radial-gradient(circle at 78% 35%, rgba(66,201,40,.18), transparent 38%);
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(255, 255, 255, 0.04);
}

/* Deja aquí tus nombres de imagen como ya los modificaste */
#inicio { background-image: url("assets/Fondo_DAP_1.png"); }
#quienes { background-image: url("assets/Fondo_DAP_2.png"); }
#servicios { background-image: url("assets/Fondo_DAP_3.png"); }
#desarrollos { background-image: url("assets/Fondo_DAP_1.png"); }
#ia { background-image: url("assets/Fondo_DAP_4.png"); }

/* ==============================
   HERO
   ============================== */

.hero {
  min-height: 100vh;
  padding: 150px 7% 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.hero-content,
.hero-panel,
.section-inner,
.contact-card {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  margin-bottom: 14px;
  text-shadow: 0 0 20px rgba(66, 201, 40, 0.42);
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  max-width: 900px;
  text-shadow: 0 18px 48px rgba(0,0,0,0.52);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-shadow: 0 14px 42px rgba(0,0,0,0.45);
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.hero-text {
  max-width: 700px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ==============================
   BOTONES
   ============================== */

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 184, 200, 0.28);
}

.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan), var(--green));
  color: #fff;
  border: 0;
  box-shadow: 0 14px 36px rgba(0, 170, 255, 0.28);
}

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

/* ==============================
   TARJETAS
   ============================== */

.hero-panel {
  display: grid;
  gap: 18px;
}

.metric {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    rgba(5, 24, 39, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.metric span {
  color: var(--blue-light);
  font-weight: 900;
  font-size: 0.85rem;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

.metric p {
  color: var(--muted);
  margin-top: 4px;
}

.section {
  padding: 105px 7%;
  min-height: 72vh;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  margin-top: 18px;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1.0fr;
  gap: 24px;
}

.card,
.service-card,
.suite-card,
.contact-card {
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    var(--card);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.glass {
  padding: 34px;
}

.glass p + p {
  margin-top: 18px;
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tags span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(0, 184, 200, 0.16);
  color: #e9feff;
  border: 1px solid rgba(66, 201, 40, 0.30);
  font-size: 0.9rem;
}

.service-grid,
.suite-grid {
  display: grid;
  gap: 24px;
}

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

.service-card {
  padding: 32px;
  min-height: 270px;
  transition: 0.25s ease;
}

.service-card:hover,
.suite-card:hover,
.ia-list div:hover {
  transform: translateY(-5px);
  border-color: rgba(66, 201, 40, 0.58);
  box-shadow: 0 30px 86px rgba(0, 184, 200, 0.34);
}

.icon-circle{

    display:inline-block;
    width:auto;
    height:auto;
    padding:10px 20px;
    border-radius:40px;
    margin-bottom:22px;
    background:linear-gradient(
        135deg,
        var(--blue),
        var(--cyan),
        var(--green)
    );

    color:#fff;
    font-weight:700;
    font-size:1rem;
    text-align:center;
    white-space:nowrap;

}

.service-card p,
.suite-card p,
.suite-card li,
.ia-list p,
.contact-card p {
  color: var(--muted);
}

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

.suite-card {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04)),
    rgba(5, 24, 39, 0.72);
  transition: 0.25s ease;
}

.suite-card img {
  height: 230px;
  object-fit: contain;
  padding: 26px;
  background:
    radial-gradient(circle at center, rgba(32,196,255,0.16), transparent 48%),
    rgba(255, 255, 255, 0.08);
}

.suite-content {
  padding: 28px;
}

.suite-subtitle {
  color: var(--accent) !important;
  font-weight: 800;
  margin-bottom: 12px;
}

.suite-card ul {
  margin-top: 18px;
  padding-left: 18px;
}

.suite-card li + li {
  margin-top: 8px;
}

/* ==============================
   IA ANALYTICS
   ============================== */

.ia-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.ia-list {
  display: grid;
  gap: 16px;
}

.ia-list div {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05)),
    var(--card-strong);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

/* ==============================
   CONTACTO
   ============================== */

.contact {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top left, rgba(0,170,255,0.28), transparent 34%),
    radial-gradient(circle at bottom right, rgba(66,201,40,0.20), transparent 34%),
    linear-gradient(135deg, #061421, #082235);
}

.contact-card {
  width: min(920px, 100%);
  padding: clamp(34px, 6vw, 72px);
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(0,170,255,0.26), transparent 34%),
    radial-gradient(circle at bottom right, rgba(66,201,40,0.16), transparent 34%),
    rgba(255,255,255,0.12);
}

.contact-info {
  display: grid;
  gap: 6px;
  margin-top: 32px;
  color: var(--muted);
}

.contact-info strong {
  color: var(--text);
  font-size: 1.1rem;
}

/* ==============================
   FOOTER
   ============================== */

footer {
  padding: 30px 7%;
  border-top: 1px solid rgba(32, 196, 255, 0.24);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  color: var(--muted);
  background:
    radial-gradient(circle at top left, rgba(0,170,255,0.14), transparent 28%),
    linear-gradient(135deg, #04121c, #061b29);
}

footer div {
  display: grid;
  gap: 4px;
}

footer strong {
  color: var(--text);
}

.privacy-notice {
  font-size: 0.86rem;
  line-height: 1.55;
}

/* ==============================
   ANIMACIONES
   ============================== */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.7s ease;
}

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

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 980px) {
  .hero,
  .two-column,
  .ia-wrap {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .suite-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 130px;
  }

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

@media (max-width: 760px) {
  .navbar {
    padding: 12px 5%;
  }

  .brand-logo {
    width: 86px;
  }

  .brand-text {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 5%;
    right: 5%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(4, 18, 28, 0.96);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 6px;
  }

  .hero {
    padding: 120px 5% 60px;
  }

  .section {
    padding: 80px 5%;
    min-height: auto;
  }

  .section-bg {
    background-attachment: scroll;
  }

  .section-overlay {
    background:
      linear-gradient(180deg, rgba(4,18,28,.78), rgba(4,18,28,.52)),
      radial-gradient(circle at 50% 15%, rgba(0,170,255,.18), transparent 42%);
  }

  footer {
    grid-template-columns: 1fr;
    padding: 24px 5%;
  }
}



.metric{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
}

.metric-content{
    flex:1;
}

.metric-icon{
    width:80px;
    height:80px;
    object-fit:contain;
    flex-shrink:0;
    opacity:.95;
    transition:.30s;
}

.metric:hover .metric-icon{
    transform:scale(1.08);
    filter:
        drop-shadow(0 0 16px rgba(0,170,255,.35))
        drop-shadow(0 0 24px rgba(66,201,40,.25));
}



.service-card{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    min-height:480px;
}

.service-img{
    display:block;
    width:100%;
    height:auto;
    max-width:100%;
    margin-top:28px;
    object-fit:contain;

}

.service-card:hover .service-img {
  transform: scale(1.04);
  filter:
    drop-shadow(0 0 18px rgba(0, 170, 255, 0.38))
    drop-shadow(0 0 28px rgba(66, 201, 40, 0.26));
}

/* ==============================
   FORMULARIO DE CONTACTO DAP
   ============================== */

.contact-container {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
  gap: 32px;
  align-items: start;
}

.contact-intro,
.contact-form-card {
  border: 1px solid var(--border);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    rgba(5, 24, 39, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-intro {
  padding: clamp(32px, 5vw, 58px);
}

.contact-intro > p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
}

.contact-data {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-data div {
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid rgba(32, 196, 255, 0.20);
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
}

.contact-data span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.contact-data a,
.contact-data strong {
  color: var(--text);
  overflow-wrap: anywhere;
}

.contact-form-card {
  padding: clamp(28px, 4vw, 46px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

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

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

.form-group label,
.form-consent label {
  color: #e9f8ff;
  font-weight: 700;
  font-size: 0.91rem;
}

.form-group label span,
.form-consent label span {
  color: var(--green);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  color: #ffffff;
  font: inherit;
  border: 1px solid rgba(32, 196, 255, 0.28);
  border-radius: 16px;
  outline: none;
  background: rgba(3, 17, 28, 0.72);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-group input,
.form-group select {
  min-height: 52px;
  padding: 0 16px;
}

.form-group textarea {
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
}

.form-group select option {
  color: #071622;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: rgba(4, 24, 38, 0.94);
  box-shadow: 0 0 0 4px rgba(66, 201, 40, 0.12);
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #ff6b6b;
}

.field-error {
  min-height: 18px;
  color: #ff9b9b;
  font-size: 0.78rem;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
  flex: 0 0 auto;
}

.submit-contact {
  width: 100%;
  margin-top: 24px;
  cursor: pointer;
  font: inherit;
}

.submit-contact:disabled {
  opacity: .68;
  cursor: wait;
  transform: none;
}

.submit-spinner {
  display: none;
  width: 19px;
  height: 19px;
  margin-left: 10px;
  border: 2px solid rgba(255,255,255,.40);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: dapSpin .8s linear infinite;
}

.submit-contact.is-loading .submit-spinner {
  display: inline-block;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  text-align: center;
  color: var(--muted);
  font-size: .90rem;
}

.form-status.error {
  color: #ff9b9b;
}

.website-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@keyframes dapSpin {
  to { transform: rotate(360deg); }
}

/* Modal propio compatible con GitHub Pages */
.dap-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 20px;
}

.dap-modal.open {
  display: grid;
}

.dap-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 9, 15, .82);
  backdrop-filter: blur(8px);
}

.dap-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 38px;
  text-align: center;
  border: 1px solid rgba(32, 196, 255, .38);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(0,170,255,.20), transparent 36%),
    radial-gradient(circle at bottom right, rgba(66,201,40,.14), transparent 36%),
    #071b2a;
  box-shadow: 0 30px 110px rgba(0, 170, 255, .30);
}

.dap-modal-logo {
  width: 118px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.dap-modal-check {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.dap-modal-dialog h3 {
  font-size: 1.7rem;
}

.dap-modal-dialog p {
  margin-top: 12px;
  color: var(--muted);
}

.dap-modal-folio {
  color: var(--green) !important;
  font-weight: 800;
}

.dap-modal-dialog .btn {
  width: 100%;
  margin-top: 24px;
  cursor: pointer;
}

.dap-modal-close {
  position: absolute;
  top: 13px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  background: rgba(255,255,255,.08);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: auto;
  }

  .contact-form-card,
  .contact-intro,
  .dap-modal-dialog {
    padding: 26px 22px;
    border-radius: 24px;
  }
}



/* ======================================================
   CARRUSEL DE EMPRESAS - SECCIÓN QUIÉNES SOMOS
====================================================== */

.business-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.business-card h3 {
  margin: 0;
  line-height: 1.4;
}

.business-carousel {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.business-carousel-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  touch-action: pan-y;
}

.business-carousel-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s ease;
  will-change: transform;
}

.business-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}

.business-carousel-slide img{
    width:100%;
    height:560px;
    object-fit:contain;
    border-radius:20px;
    background:rgba(255,255,255,.02);
}

.business-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(8, 20, 38, 0.72);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

.business-carousel-btn:hover {
  background: rgba(18, 141, 255, 0.92);
  transform: translateY(-50%) scale(1.08);
}

.business-carousel-prev {
  left: 12px;
}

.business-carousel-next {
  right: 12px;
}

.business-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -8px;
}

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

.business-carousel-dot.active {
  width: 26px;
  border-radius: 10px;
  background: #128dff;
}

@media (max-width: 900px) {
  .business-carousel-slide img {
    height: 330px;
  }
}

@media (max-width: 600px) {
  .business-card {
    gap: 18px;
  }

  .business-carousel-slide img {
    height: 260px;
  }

  .business-carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .business-carousel-prev {
    left: 8px;
  }

  .business-carousel-next {
    right: 8px;
  }
}
