/* ─────────────────────────────────────────
   TOKENS (Colores azules y celestes amigables)
───────────────────────────────────────── */
:root {
  --white:       #FFFFFF;
  --off-white:   #F8FAFE;
  --surface:     #F0F4F8;
  --border:      #E2E8F0;
  --muted:       #64748B;
  --body:        #334155;
  --strong:      #0F172A;
  --primary:     #1E88E5;
  --primary-dark: #1565C0;
  --primary-light: #E3F2FD;
  --accent:      #42A5F5;
  --accent-hover: #1E88E5;
  
  --font-base: 'Open Sans', system-ui, -apple-system, sans-serif;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --r:           12px;
  --shadow-sm:   0 1px 3px rgba(15,23,42,.06), 0 4px 14px rgba(15,23,42,.07);
  --shadow-md:   0 4px 8px rgba(15,23,42,.08), 0 16px 40px rgba(15,23,42,.10);
}

/* ─────────────────────────────────────────
   RESET & GLOBALES
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-base);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 48px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 48px; }
@media(max-width:768px){ .container, .container-sm { padding: 0 24px; } }

/* ─────────────────────────────────────────
   NAVEGACIÓN
───────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(15,23,42,.05);
  transition: all .3s var(--ease);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
}
.nav-name { font-family: var(--font-base); font-size: 20px; font-weight: 700; color: var(--strong); letter-spacing: -.01em; line-height: 1; }
.nav-sub  { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a { font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary); color: var(--white) !important; letter-spacing: .06em !important;
  padding: 10px 22px; border-radius: var(--r); font-weight: 700 !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--strong); transition: all .3s; }
@media(max-width:900px){
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 0 24px; }
}

/* Mobile menu */
#mobile-menu {
  display: none; position: fixed; top: 76px; left: 0; right: 0; z-index: 199;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15,23,42,.10);
}
#mobile-menu.open { display: block; }
#mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
#mobile-menu a { display: block; padding: 12px 16px; font-size: 14px; font-weight: 500; color: var(--body); border-radius: var(--r); transition: background .2s; }
#mobile-menu a:hover { background: var(--surface); color: var(--primary); }
#mobile-menu .m-cta { background: var(--primary); color: var(--white); margin-top: 8px; text-align: center; border-radius: var(--r); }
#mobile-menu .m-cta:hover { background: var(--primary-dark); }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 76px;
  background: var(--primary-light);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-mobile-ac.png');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.4) 30%,
        transparent 100%
    );
    pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 48px 140px;
  width: 100%;
}
.hero-text-box { max-width: 600px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow-line { width: 36px; height: 2px; background: var(--primary); }
.hero-eyebrow-text { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); }
.hero-title {
  font-family: var(--font-base);
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--strong);
  letter-spacing: -.025em;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--primary); }
.hero-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--body);
  max-width: 480px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: var(--white);
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 15px 32px; border-radius: var(--r);
  transition: background .2s var(--ease), transform .15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,136,229,.25); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--primary);
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 15px 0; border-bottom: 1.5px solid var(--primary);
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.btn-ghost:hover { color: var(--primary-dark); border-color: var(--primary-dark); }
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--accent);
  border-top: none;
}
.hero-stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: stretch;
}
.hero-stat {
  flex: 1;
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.hero-stat:first-child { border-left: none; }
.hero-stat-n {
  font-family: var(--font-base);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.hero-stat-u { font-size: 1.3rem; color: var(--white); font-weight: 600; }
.hero-stat-l { font-size: 11px; color: rgba(255,255,255,.85); letter-spacing: .09em; text-transform: uppercase; font-weight: 600; }
.hero-mobile-photo { display: none; }
@media(max-width:900px){
  .hero-mobile-photo {
    display: block;
    width: 100%;
    height: 58vw;
    min-height: 260px;
    object-fit: cover;
    object-position: center 10%;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
  }
  .hero-bg { display: none; }
  .hero-content { padding: 44px 24px 48px; }
  .hero-stats-bar {
    position: relative;
    bottom: auto;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .hero-stats-inner { flex-wrap: wrap; padding: 0 24px; }
  .hero-stat { flex: 0 0 50%; border-left: none; border-top: 1px solid rgba(255,255,255,.15); }
  .hero-stat:first-child { border-top: none; }
  .hero-stat:nth-child(2) { border-left: 1px solid rgba(255,255,255,.15); border-top: none; }
}
@media(max-width:480px){
  .hero-mobile-photo { height: 70vw; }
  .hero-stat { flex: 0 0 100%; border-left: none !important; }
}

/* ─────────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────────── */
.section-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--primary);
  margin-bottom: 16px;
}
.section-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--primary); }
.section-title {
  font-family: var(--font-base);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; color: var(--strong); letter-spacing: -.02em; line-height: 1.1;
  margin-bottom: 16px;
}
.section-subtitle { font-size: 16px; font-weight: 400; color: var(--body); line-height: 1.7; max-width: 580px; }

/* ─────────────────────────────────────────
   SERVICIOS
───────────────────────────────────────── */
#servicios { padding: 112px 0; background: var(--white); }
.servicios-header { margin-bottom: 64px; }
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media(max-width:900px){ .servicios-grid { grid-template-columns: 1fr; gap: 24px; } }
@media(min-width:901px) and (max-width:1100px){ .servicios-grid { grid-template-columns: repeat(2,1fr); } }
.servicio-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  transition: all .25s var(--ease);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.servicio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.servicio-icon {
  width: 54px; height: 54px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
}
.servicio-name {
  font-family: var(--font-base); font-size: 1.25rem; font-weight: 700;
  color: var(--strong); margin-bottom: 12px; line-height: 1.25;
}
.servicio-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─────────────────────────────────────────
   SOBRE NOSOTROS
───────────────────────────────────────── */
#sobre-nosotros { padding: 112px 0; background: var(--primary-light); }
.sobre-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
@media(max-width:1000px){ .sobre-grid { grid-template-columns: 1fr; gap: 48px; } }
.sobre-photo-wrap { position: relative; }
.sobre-photo {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: center top;
  border-radius: var(--r);
  display: block;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.sobre-photo-frame { display: none; }
.sobre-label { font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.sobre-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--primary); }
.sobre-title { font-family: var(--font-base); font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 700; color: var(--strong); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 28px; }
.sobre-text { font-size: 15.5px; font-weight: 400; color: var(--body); line-height: 1.8; margin-bottom: 20px; }
.sobre-highlight {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  padding: 20px 24px; border-radius: var(--r); margin: 32px 0;
  box-shadow: var(--shadow-sm);
}
.sobre-highlight-icon { color: var(--primary); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.sobre-highlight-text { font-size: 14.5px; color: var(--body); line-height: 1.65; }
.sobre-highlight-text strong { color: var(--primary); }
.trayectoria { margin-top: 40px; }
.trayectoria-title { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; }
.tray-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.tray-item:last-child { border-bottom: none; }
.tray-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 7px; }
.tray-text { font-size: 14px; color: var(--strong); line-height: 1.5; font-weight: 500; }

/* ─────────────────────────────────────────
   VETERINARIO DESTACADO
───────────────────────────────────────── */
#veterinario-destacado {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.veterinario-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.veterinario-icon { width: 48px; height: 48px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.veterinario-text { flex: 1; min-width: 240px; }
.veterinario-title { font-family: var(--font-base); font-size: 1.1rem; font-weight: 700; color: var(--strong); margin-bottom: 4px; }
.veterinario-sub { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* ─────────────────────────────────────────
   MAPA
───────────────────────────────────────── */
#mapa { position: relative; background: var(--surface); border-top: 1px solid var(--border); }
.mapa-card {
  position: absolute; top: 40px; left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border);
  padding: 24px 32px; border-radius: var(--r);
  box-shadow: var(--shadow-md); z-index: 10;
  text-align: center; min-width: 260px;
}
.mapa-card-name { font-family: var(--font-base); font-size: 1rem; font-weight: 700; color: var(--strong); margin-bottom: 4px; }
.mapa-card-addr { font-size: 12.5px; color: var(--muted); margin-bottom: 12px; }
.mapa-card-link { font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--primary); transition: color .2s; }
.mapa-card-link:hover { color: var(--primary-dark); }
#map { height: 420px; width: 100%; border: none; display: block; filter: grayscale(.1); }

/* ─────────────────────────────────────────
   CONTACTO
───────────────────────────────────────── */
#contacto { padding: 112px 0; background: var(--white); border-top: 1px solid var(--border); }
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media(max-width:900px){ .contacto-grid { grid-template-columns: 1fr; gap: 48px; } }
.contacto-info-title { font-family: var(--font-base); font-size: 1.9rem; font-weight: 700; color: var(--strong); letter-spacing: -.02em; margin-bottom: 20px; line-height: 1.15; }
.contacto-info-text { font-size: 15px; color: var(--body); line-height: 1.75; margin-bottom: 40px; font-weight: 400; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.contact-icon { width: 44px; height: 44px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.contact-label { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact-value { font-size: 15px; color: var(--strong); font-weight: 600; }
.contact-value a:hover { color: var(--primary); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-input, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border); border-radius: var(--r);
  background: var(--white); color: var(--strong);
  font-family: var(--font-base); font-size: 14.5px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,136,229,.1); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  background: var(--primary); color: var(--white);
  font-family: var(--font-base); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 15px 32px; border: none; border-radius: var(--r); cursor: pointer;
  transition: background .2s, transform .15s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
#form-msg { margin-top: 14px; padding: 12px 16px; border-radius: 3px; font-size: 14px; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--strong); color: rgba(255,255,255,.7);
  padding: 52px 0 36px;
}
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .fn { font-family: var(--font-base); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-brand .ft { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.65; max-width: 260px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-links-title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 28px; }
.footer-copy { font-size: 12px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: all .2s; }
.footer-social a:hover { border-color: var(--primary); color: var(--primary); }

/* ─────────────────────────────────────────
   WHATSAPP FLOTANTE
───────────────────────────────────────── */
#whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35), 0 8px 32px rgba(37,211,102,.20);
  transition: transform .2s var(--ease), box-shadow .2s;
  cursor: pointer;
}
#whatsapp-btn:hover { transform: scale(1.08) translateY(-2px); }
#whatsapp-btn svg { width: 28px; height: 28px; }
#whatsapp-btn::before {
  content: '¡Hola! ¿Necesitas ayuda?';
  position: absolute; right: 68px;
  background: var(--strong); color: var(--white);
  font-size: 12px; font-weight: 500; white-space: nowrap;
  padding: 7px 14px; border-radius: var(--r);
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  transform: translateX(6px);
}
#whatsapp-btn:hover::before { opacity: 1; transform: translateX(0); }
#whatsapp-btn::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: pulse-wa 2.5s ease-out infinite;
}
@keyframes pulse-wa {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ─────────────────────────────────────────
   ANIMACIONES
───────────────────────────────────────── */
.servicio-card, .contact-item, .tray-item {
  opacity: 0;
  transform: translateY(20px);
}
.contact-item, .tray-item {
  transition: opacity .5s ease, transform .5s ease;
}

/* ─────────────────────────────────────────
   MARCAS CARRUSEL
───────────────────────────────────────── */
#marcas {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marcas-header {
  text-align: center;
  margin-bottom: 56px;
}

.marcas-header .section-label {
  justify-content: center;
}

.marcas-header .section-label::before {
  content: none;
}

.marcas-header .section-title {
  margin-bottom: 20px;
}

/* Contenedor del carrusel */
.marcas-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

/* Botones de navegación */
.carousel-btn {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  flex-shrink: 0;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.carousel-btn:hover svg {
  stroke: var(--white);
}

.carousel-btn svg {
  stroke: var(--primary);
  transition: stroke 0.25s;
}

/* Contenedor del track */
.marcas-carousel {
  flex: 1;
  overflow: hidden;
  border-radius: var(--r);
}

.marcas-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Cada item del carrusel */
.marca-logo-item {
  flex-shrink: 0;
  width: 140px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 12px;
  text-align: center;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
}

.marca-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.marca-logo {
  width: 100px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}

.marca-logo-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--strong);
  letter-spacing: -0.2px;
  display: block;
}

.marcas-note {
  text-align: center;
  padding: 20px;
  background: var(--primary-light);
  border-radius: var(--r);
  max-width: 700px;
  margin: 0 auto;
}

.marcas-note p {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--primary-dark);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-btn {
    width: 36px;
    height: 36px;
  }
  
  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }
  
  .marca-logo-item {
    width: 110px;
    padding: 16px 8px;
  }
  
  .marca-logo {
    width: 70px;
    height: 45px;
  }
  
  .marca-logo-name {
    font-size: 11px;
  }
  
  .marcas-note p {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .marca-logo-item {
    width: 95px;
    padding: 12px 6px;
  }
  
  .marca-logo {
    width: 60px;
    height: 38px;
  }
}