:root {
  /* --- Paleta de color --- */
  --verde-salvia:   #6E8C5F;  /* color principal del logo / CTA */
  --verde-oscuro:   #4A5D3F;  /* hover, texto de marca */
  --crema-fondo:    #F7F3EA;  /* fondo general, cálido */
  --beige-card:     #EFE7D8;  /* fondo de tarjetas y secciones alternas */
  --marron-texto:   #3D3530;  /* texto principal, cálido en vez de negro puro */
  --marron-suave:   #756A60;  /* texto secundario */
  --terracota:      #C17A54;  /* acento cálido secundario */
  --blanco:         #FFFFFF;

  /* --- Tipografía --- */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* --- Espaciados / radios --- */
  --radio-sm: 8px;
  --radio-md: 14px;
  --radio-lg: 24px;
  --sombra: 0 8px 24px rgba(61, 53, 48, 0.08);
  --sombra-hover: 0 12px 28px rgba(61, 53, 48, 0.14);
}

/* =========================================================
   RESET BÁSICO
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--marron-texto);
  background-color: var(--crema-fondo);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

svg {
  display: block;
}

:focus-visible {
  outline: 3px solid var(--terracota);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   TIPOGRAFÍA GENERAL
   ========================================================= */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--verde-oscuro);
  font-weight: 600;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2.section-title { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 14px; }
h3 { font-size: 1.2rem; margin-bottom: 8px; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--terracota);
  margin-bottom: 10px;
}

.eyebrow.center,
.section-title.center {
  text-align: center;
}

.section-title.center {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   BOTONES
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radio-sm);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background-color: var(--verde-salvia);
  color: var(--blanco);
}

.btn-primary:hover {
  background-color: var(--verde-oscuro);
  transform: translateY(-2px);
  box-shadow: var(--sombra-hover);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--verde-oscuro);
  color: var(--verde-oscuro);
}

.btn-outline:hover {
  background-color: var(--verde-oscuro);
  color: var(--blanco);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(110, 140, 95, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}

.logo-nombre {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-nombre-marca {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--verde-oscuro);
  letter-spacing: -0.01em;
}

.logo-nombre-sub {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--marron-suave);
  text-transform: uppercase;
}

/* --- Botón hamburguesa (solo móvil) --- */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.menu-toggle .bar {
  width: 26px;
  height: 2.5px;
  background-color: var(--verde-oscuro);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Navegación principal --- */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav ul {
  display: flex;
  gap: 26px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--marron-texto);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--terracota);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.88rem;
}

.nav-extra {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--verde-oscuro);
  padding: 6px 11px;
  border: 1.5px solid var(--verde-salvia);
  border-radius: var(--radio-sm);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.lang-switch:hover {
  background-color: var(--verde-salvia);
  color: var(--blanco);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-top: 64px;
  overflow: hidden;
  background-color: var(--crema-fondo);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 60px;
}

.hero-content {
  text-align: center;
}

.hero h1 {
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--marron-suave);
  max-width: 540px;
  margin: 0 auto 30px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radio-lg);
  box-shadow: var(--sombra-hover);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.roof-divider {
  display: block;
  width: 100%;
  height: 40px;
}

/* =========================================================
   SERVICIOS
   ========================================================= */
.servicios {
  background-color: var(--crema-fondo);
  padding: 30px 0 80px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 44px;
}

.card {
  background-color: var(--beige-card);
  border-radius: var(--radio-lg);
  padding: 32px 26px;
  border-top: 4px solid var(--verde-salvia);
  box-shadow: var(--sombra);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-hover);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--crema-fondo);
  border-radius: 50%;
  color: var(--verde-salvia);
  margin-bottom: 18px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card h3 {
  color: var(--verde-oscuro);
}

.card p {
  color: var(--marron-suave);
  font-size: 0.96rem;
}

/* =========================================================
   SOBRE NOSOTROS
   ========================================================= */
.nosotros {
  background-color: var(--beige-card);
  padding: 80px 0;
}

.nosotros-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

.nosotros-text p {
  color: var(--marron-suave);
  margin-top: 14px;
}

.checklist {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  color: var(--marron-texto);
}

.checklist svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--verde-salvia);
  margin-top: 1px;
}

.nosotros-media {
  display: flex;
}

.nosotros-photo {
  width: 100%;
  border-radius: var(--radio-lg);
  box-shadow: var(--sombra);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-top: 4px solid var(--verde-salvia);
}

/* =========================================================
   CONTACTO
   ========================================================= */
.contacto {
  background-color: var(--crema-fondo);
  padding: 80px 0;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 44px;
}

.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-item svg {
  width: 26px;
  height: 26px;
  color: var(--verde-salvia);
  flex-shrink: 0;
  margin-top: 4px;
}

.info-item h3 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--verde-oscuro);
}

.info-item p,
.info-item a {
  color: var(--marron-suave);
  font-size: 0.95rem;
}

.info-item a:hover {
  color: var(--terracota);
}

.contacto-cta {
  align-self: flex-start;
  margin-top: 6px;
}

.contacto-mapa {
  min-height: 280px;
  border-radius: var(--radio-lg);
  overflow: hidden;
  box-shadow: var(--sombra);
}

.contacto-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.mapa-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background-color: var(--beige-card);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed rgba(110, 140, 95, 0.4);
  border-radius: var(--radio-lg);
}

.mapa-placeholder p {
  color: var(--marron-suave);
  font-weight: 600;
}

.mapa-placeholder span {
  font-weight: 400;
  font-size: 0.85rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background-color: var(--verde-oscuro);
  color: var(--crema-fondo);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 64px;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(247, 243, 234, 0.4);
  border-radius: 50%;
  color: var(--crema-fondo);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-social a:hover {
  background-color: var(--terracota);
  border-color: var(--terracota);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(247, 243, 234, 0.75);
}

/* =========================================================
   RESPONSIVE — TABLET Y ESCRITORIO (mobile-first: min-width)
   ========================================================= */
@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nosotros-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .contacto-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    text-align: left;
    padding-top: 40px;
    padding-bottom: 90px;
  }

  .hero-content {
    text-align: left;
  }

  .hero-subtitle {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }
}

/* --- Menú móvil: oculto por defecto, visible en escritorio --- */
@media (max-width: 1023px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background-color: var(--crema-fondo);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 36px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s ease;
    box-shadow: -8px 0 24px rgba(61, 53, 48, 0.12);
    visibility: hidden;
    pointer-events: none;
    touch-action: none;
    overscroll-behavior: contain;
  }

  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    touch-action: auto;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 22px;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .nav-extra {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .lang-switch {
    align-self: flex-start;
  }
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* --- Respeto a preferencia de movimiento reducido --- */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* =========================================================
   NOSOTROS — logo 3D
   ========================================================= */
.nosotros-logo3d {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radio-lg);
  filter: drop-shadow(0 20px 40px rgba(74, 93, 63, 0.22))
          drop-shadow(0 6px 14px rgba(74, 93, 63, 0.14));
  transition: filter 0.3s ease, transform 0.3s ease;
}

.nosotros-logo3d:hover {
  filter: drop-shadow(0 28px 50px rgba(74, 93, 63, 0.3))
          drop-shadow(0 8px 18px rgba(74, 93, 63, 0.18));
  transform: translateY(-4px) rotate(-1deg);
}

/* =========================================================
   GERENTE
   ========================================================= */
.gerente {
  background-color: var(--crema-fondo);
  padding: 80px 0;
}

.gerente-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.gerente-foto-wrap {
  display: flex;
  justify-content: center;
}

.gerente-foto {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radio-lg);
  box-shadow: var(--sombra-hover);
  border-bottom: 4px solid var(--verde-salvia);
}

.gerente-cargo {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--terracota);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  margin-top: -8px;
}

.gerente-texto p {
  color: var(--marron-suave);
  margin-top: 14px;
}

.gerente-texto .btn {
  margin-top: 28px;
}

/* =========================================================
   RESEÑAS
   ========================================================= */
.resenas {
  background-color: var(--beige-card);
  padding: 80px 0;
}

.resenas-subtitulo {
  text-align: center;
  color: var(--marron-suave);
  margin-top: -4px;
  margin-bottom: 44px;
}

.resenas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.resena-card {
  background-color: var(--blanco);
  border-radius: var(--radio-lg);
  padding: 28px;
  box-shadow: var(--sombra);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resena-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
}

.resena-estrellas {
  display: flex;
  gap: 3px;
}

.resena-estrellas svg {
  width: 18px;
  height: 18px;
}

.resena-card blockquote {
  font-size: 0.97rem;
  color: var(--marron-texto);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

.resena-autor {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--beige-card);
  padding-top: 16px;
}

.resena-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--verde-salvia);
  color: var(--blanco);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resena-autor strong {
  display: block;
  font-size: 0.93rem;
  color: var(--marron-texto);
}

.resena-autor span {
  font-size: 0.82rem;
  color: var(--marron-suave);
}

.resenas-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* =========================================================
   IDEALISTA
   ========================================================= */
.idealista {
  background-color: var(--verde-oscuro);
  padding: 72px 0;
}

.idealista-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.idealista .eyebrow {
  color: rgba(239, 231, 216, 0.7);
}

.idealista .section-title {
  color: var(--crema-fondo);
}

.idealista-texto p {
  color: rgba(239, 231, 216, 0.85);
  margin-top: 14px;
  margin-bottom: 28px;
}

.idealista-texto .btn-primary {
  background-color: var(--terracota);
}

.idealista-texto .btn-primary:hover {
  background-color: #a8653f;
}

.idealista-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.qr-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(239, 231, 216, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.qr-wrap {
  background-color: var(--blanco);
  border-radius: var(--radio-md);
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  width: fit-content;
}

.qr-wrap img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
}

.qr-hint {
  font-size: 0.82rem;
  color: rgba(239, 231, 216, 0.55);
}

/* =========================================================
   FOOTER CORPORATIVO (reemplaza footer con redes sociales)
   ========================================================= */
.site-footer {
  background-color: var(--verde-oscuro);
  color: var(--crema-fondo);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 56px 20px 40px;
  max-width: 1140px;
  margin: 0 auto;
  /* reset del flex previo */
  flex-direction: unset;
  align-items: unset;
  text-align: unset;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo {
  height: 70px;
  filter: brightness(0) invert(1);
}

.footer-datos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--crema-fondo);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li,
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(247, 243, 234, 0.72);
  transition: color 0.15s ease;
}

.footer-col ul a:hover {
  color: var(--crema-fondo);
}

.footer-bottom {
  border-top: 1px solid rgba(247, 243, 234, 0.12);
  padding: 18px 0;
}

.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(247, 243, 234, 0.5);
  text-align: center;
}

/* =========================================================
   RESPONSIVE NUEVAS SECCIONES
   ========================================================= */
@media (min-width: 768px) {
  .resenas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-datos {
    grid-template-columns: repeat(3, 1fr);
  }

  .idealista-inner {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (min-width: 1024px) {
  .gerente-inner {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .footer-inner {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}
/* =========================================================
   GERENTE — datos estructurados y descripción
   ========================================================= */
.gerente-datos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background-color: var(--crema-fondo);
  border-radius: var(--radio-md);
  border-left: 3px solid var(--verde-salvia);
}

.gerente-dato {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.91rem;
  font-weight: 600;
  color: var(--marron-texto);
  line-height: 1.4;
}

.gerente-dato svg {
  width: 18px;
  height: 18px;
  color: var(--verde-salvia);
  flex-shrink: 0;
  margin-top: 1px;
}

.gerente-desc {
  color: var(--marron-suave);
  font-size: 0.97rem;
  margin-bottom: 0;
  margin-top: 4px;
}

/* =========================================================
   CARRUSEL HERO
   ========================================================= */
.carrusel {
  position: relative;
  width: 100%;
  height: 100svh;          /* viewport completo, respeta barra del navegador móvil */
  min-height: 480px;
  max-height: 860px;
  overflow: hidden;
}

/* --- Slides --- */
.carrusel-track {
  position: absolute;
  inset: 0;
}

.carrusel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.85s ease, transform 0.85s ease;
  will-change: opacity, transform;
}

.carrusel-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Degradado oscuro para legibilidad del texto superpuesto */
.carrusel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(40, 55, 35, 0.35) 0%,
    rgba(30, 42, 26, 0.55) 55%,
    rgba(20, 30, 18, 0.72) 100%
  );
}

/* --- Overlay con contenido --- */
.carrusel-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 20px 80px;
  gap: 0;
}

.carrusel-logo-wrap {
  margin-bottom: 16px;
}

.carrusel-logo-icon {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.carrusel-titulo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
  line-height: 1;
}

.carrusel-titulo-marca {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
  line-height: 1;
}

.carrusel-titulo-sub {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 2.2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  text-transform: uppercase;
}

.carrusel-claim {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  margin-bottom: 32px;
  max-width: 480px;
}

.carrusel-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.btn-carrusel-outline {
  background-color: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: #ffffff;
}

.btn-carrusel-outline:hover {
  background-color: rgba(255,255,255,0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* --- Botones prev / next --- */
.carrusel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}

.carrusel-btn svg {
  width: 20px;
  height: 20px;
}

.carrusel-btn:hover {
  background-color: rgba(255,255,255,0.32);
}

.carrusel-prev { left: 16px; }
.carrusel-next { right: 16px; }

/* --- Dots indicadores --- */
.carrusel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.carrusel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.carrusel-dot.active {
  background-color: #ffffff;
  transform: scale(1.3);
}

/* --- Responsive --- */
@media (min-width: 768px) {
  .carrusel-actions {
    flex-direction: row;
    justify-content: center;
  }

  .carrusel-btn {
    width: 52px;
    height: 52px;
  }

  .carrusel-prev { left: 28px; }
  .carrusel-next { right: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .carrusel-slide {
    transition: opacity 0.1s ease;
    transform: scale(1) !important;
  }
}