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

  :root {
    --verde: #1D7A3A;
    --verde-oscuro: #124D25;
    --verde-claro: #D6F0DC;
    --tierra: #B85C2A;
    --tierra-claro: #F5E8DF;
    --crema: #F7F4EE;
    --negro: #1A1A18;
    --gris: #5A5A55;
    --gris-claro: #E8E6E0;
    --blanco: #FFFFFF;
    --naranja:#e67e22;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--blanco);
    color: var(--negro);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #fff;
    backdrop-filter: blur(8px);
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    color: var(--negro);
    text-decoration: none;
  }
  .nav-logo img{
    width: 80px;
  }

  .nav-logo span { color: #5FBF75; }

  nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }

  nav ul a {
    color: #000;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.2s;
    cursor: pointer;
  }

  nav ul a:hover { color: var(--naranja); }

  .nav-cta {
    background: var(--tierra);
    color: var(--blanco) !important;
    padding: 0.45rem 1.2rem;
    border-radius: 4px;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: #9A4A1F !important; color: var(--blanco) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: url(images/guia_3.webp) left center no-repeat ;
    background-color: #1a4a22;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 10rem 2rem 4rem;
  }

  .hero-texture {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 50%, rgba(93,202,165,0.06) 0%, transparent 60%),
      radial-gradient(circle at 80% 20%, rgba(184,92,42,0.08) 0%, transparent 50%);
    pointer-events: none;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5FBF75;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(95,191,117,0.35);
    padding: 0.35rem 1rem;
    border-radius: 2px;
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--blanco);
    text-align: center;
    margin-bottom: 0.4rem;
  }

  .hero h1 .accent { color: #ed500e; }

  .hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: rgba(255,255,255,0.9);
    text-align: center;
    max-width: 520px;
    line-height: 1.6;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    background: rgba(0,0,0,0.5);
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-primary {
    background: var(--tierra);
    color: var(--blanco);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    border-radius: 4px;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-primary:hover { background: #9A4A1F; transform: translateY(-2px); }

  .btn-outline {
    border: 1.5px solid rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    border-radius: 4px;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-outline:hover {
    border-color: rgba(255,255,255,0.7);
    color: var(--blanco);
    transform: translateY(-2px);
  }

  .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat {
    text-align: center;
  }

  .hero-stat .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: #5FBF75;
    line-height: 1;
  }

  .hero-stat .label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.25rem;
  }

  .scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 1.4rem;
    animation: bounce 2s infinite;
  }

  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
  }

  /* SECCIÓN GENÉRICA */
  section { padding: 5rem 2rem; scroll-margin-top: 80px; }

  .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--verde);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1;
    color: var(--negro);
    margin-bottom: 1rem;
  }

  .section-desc {
    font-size: 1rem;
    color: var(--gris);
    max-width: 500px;
    line-height: 1.7;
  }

  /* TOURS */
  .tours-section { background: var(--crema); }

  .tours-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }

  .tour-card {
    background: var(--blanco);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gris-claro);
    transition: transform 0.25s, box-shadow 0.25s;
  }

  .tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  }

  .tour-img {
    height: 200px;
    position: relative;
    overflow: hidden;
    img{
      width: 100%;
      max-height: 250px; /* ajusta según tu diseño */
      object-fit: cover;
      object-position: center;
    }
  }

  .tour-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* SVG placeholder de paisaje para los tours */
  .tour-img svg { width: 100%; height: 100%; }

  .tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--negro);
    color: var(--blanco);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 3px;
  }

  .tour-badge.popular { background: var(--tierra); }

  .tour-body { padding: 1.5rem; }

  .tour-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.75rem;
    color: var(--gris);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 500;
  }

  .tour-meta span { display: flex; align-items: center; gap: 0.3rem; }

  .tour-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem;
    letter-spacing: 0.02em;
    color: var(--negro);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    min-height: 55px;
  }

  .tour-desc {
    font-size: 0.85rem;
    color: var(--gris);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    min-height: 110px;
  }

  .tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gris-claro);
    padding-top: 1rem;
  }

  .tour-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--verde-oscuro);
    line-height: 1;
  }

  .tour-price small {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    color: var(--gris);
    font-weight: 500;
    display: block;
    line-height: 1.4;
  }

  .btn-reservar {
    background: var(--verde);
    color: var(--blanco);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    transition: background 0.2s;
    white-space: nowrap;
  }

  .btn-reservar:hover { background: var(--verde-oscuro); }

  /* POR QUÉ ELEGIRNOS */
  .por-que {
    background: var(--negro);
    color: var(--blanco);
  }

  .por-que .section-title { color: var(--blanco); }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
  }

  .feature {
    padding: 1.75rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    transition: border-color 0.2s;
  }

  .feature:hover { border-color: rgba(95,191,117,0.4); }

  .feature-icon {
    width: 42px;
    height: 42px;
    background: rgba(95,191,117,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    color: #5FBF75;
  }

  .feature h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.6rem;
    color: var(--blanco);
  }

  .feature p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
  }

  /* GALERÍA / IMPRESIONES */
  .galeria {
    background: var(--blanco);
    overflow: hidden;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 6px;
    margin-top: 2.5rem;
    border-radius: 8px;
    overflow: hidden;
  }

  .g-item {
    overflow: hidden;
    position: relative;
  }


  .g-item:first-child {
    grid-row: span 2;
  }

  .g-item svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s;
  }
  .g-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .g-item { cursor: zoom-in; }

  .g-item:hover svg { transform: scale(1.04); }

  /* LIGHTBOX */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    align-items: center;
    justify-content: center;
  }

  .lightbox.open { display: flex; }

  .lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(6px);
    animation: lbFadeIn 0.25s ease;
  }

  @keyframes lbFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .lightbox-content {
    position: relative;
    z-index: 1;
    max-width: min(90vw, 860px);
    max-height: 88vh;
    width: 100%;
    animation: lbZoomIn 0.28s cubic-bezier(0.34,1.56,0.64,1);
  }

  @keyframes lbZoomIn {
    from { transform: scale(0.82); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  .lightbox-svg-wrap {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    background: #111;
    aspect-ratio: 4/3;
  }

  .lightbox-svg-wrap svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .lightbox-svg-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }

  .lightbox-caption {
    text-align: center;
    margin-top: 0.9rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 38px;
    height: 38px;
    background: var(--tierra);
    border: none;
    border-radius: 50%;
    color: var(--blanco);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    z-index: 2;
  }

  .lightbox-close:hover { background: #9A4A1F; transform: scale(1.1); }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--blanco);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
  }

  .lightbox-nav:hover { background: rgba(255,255,255,0.25); }
  .lightbox-prev { left: -56px; }
  .lightbox-next { right: -56px; }

  .lightbox-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 0.75rem;
  }

  .lightbox-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
  }

  .lightbox-dot.active {
    background: #5FBF75;
    transform: scale(1.3);
  }

  @media (max-width: 600px) {
    .lightbox-prev { left: 6px; }
    .lightbox-next { right: 6px; }
    .lightbox-close { top: 8px; right: 8px; }
  }
  /* TESTIMONIOS */
  .testimonios { background: var(--crema); }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .testi-card {
    background: var(--blanco);
    border-radius: 8px;
    padding: 1.75rem;
    border: 1px solid var(--gris-claro);
  }

  .stars {
    color: var(--tierra);
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
  }

  .testi-text {
    font-size: 0.9rem;
    color: var(--negro);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--blanco);
    flex-shrink: 0;
  }

  .testi-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--negro);
  }

  .testi-lugar {
    font-size: 0.75rem;
    color: var(--gris);
  }

  /* CONTACTO / CTA */
  .cta-section {
    background: linear-gradient(135deg, var(--verde-oscuro) 0%, #1a4a22 100%);
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 30%, rgba(184,92,42,0.15) 0%, transparent 60%);
    pointer-events: none;
  }

  .cta-section .section-eyebrow { color: rgba(255,255,255,0.55); }

  .cta-section .section-title {
    color: var(--blanco);
    max-width: 700px;
    margin: 0 auto 1rem;
  }

  .cta-section .section-desc {
    color: rgba(255,255,255,0.6);
    margin: 0 auto 2.5rem;
    max-width: 450px;
  }

  .contact-options {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-whatsapp {
    background: #25D366;
    color: var(--blanco);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-whatsapp:hover { background: #1db855; transform: translateY(-2px); }

  .btn-insta {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.4);
    color: var(--blanco);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.9rem 2rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: border-color 0.2s, transform 0.15s;
  }

  .btn-insta:hover { border-color: rgba(255,255,255,0.8); transform: translateY(-2px); }

  /* FOOTER */
  footer {
    background: var(--negro);
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
  }

  footer a { color: rgba(255,255,255,0.4); text-decoration: none; }

  /* HAMBURGER BUTTON */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    gap: 5px;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s;
    z-index: 200;
  }

  .nav-hamburger:hover { background: rgba(255,255,255,0.08); }

  .nav-hamburger .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--blanco);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
  }
  @media (max-width: 768px) {
    .nav-hamburger .bar {
      background: var(--negro);
    }
  }


  .nav-hamburger.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-hamburger.open .bar:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .nav-hamburger.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* MOBILE DRAWER */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 150;
    pointer-events: none;
  }

  .mobile-menu.open {
    pointer-events: all;
  }

  .mobile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.35s ease;
  }

  .mobile-menu.open .mobile-overlay {
    background: rgba(0,0,0,0.55);
  }

  .mobile-drawer {
    position: absolute;
    top: 0; right: 0;
    width: min(85vw, 300px);
    height: 100%;
    background: #111410;
    display: flex;
    flex-direction: column;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow: hidden;
  }

  .mobile-menu.open .mobile-drawer {
    transform: translateX(0);
  }

  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .mobile-drawer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    color: var(--blanco);
    text-decoration: none;
  }

  .mobile-drawer-logo span { color: #5FBF75; }

  .mobile-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
  }

  .mobile-close:hover { color: var(--blanco); }

  .mobile-nav-links {
    list-style: none;
    padding: 1.5rem 0;
    flex: 1;
  }

  .mobile-nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.5rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s, background 0.2s;
  }

  .mobile-nav-links a:hover {
    color: #5FBF75;
    background: rgba(95,191,117,0.06);
  }

  .mobile-nav-links a .link-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .mobile-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    background: var(--tierra);
    color: var(--blanco);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.9rem;
    border-radius: 6px;
    transition: background 0.2s;
    margin-bottom: 0.85rem;
  }

  .mobile-cta:hover { background: #9A4A1F; }

  .mobile-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
  }

  .mobile-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }

  .mobile-social a:hover {
    border-color: rgba(255,255,255,0.4);
    color: var(--blanco);
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav ul { display: none; }
    .nav-hamburger { display: flex; }
    .mobile-menu { display: block; }
    .tours-header { flex-direction: column; align-items: flex-start; }
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: repeat(3, 180px);
    }
    .g-item:first-child { grid-row: span 1; grid-column: span 2; }
    .hero-stat .num { font-size: 2rem; }
  }

  /* ===== CARRUSEL TESTIMONIOS ===== */
.testi-carousel-wrap {
  position: relative;
  margin-top: 3rem;
  
}
@media (max-width: 768px) {
  .testi-carousel-wrap {
    overflow: hidden;
  }
}

.testi-carousel {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.testi-carousel.is-dragging {
  cursor: grabbing;
  transition: none;
}

.testi-card {
  background: var(--blanco);
  border-radius: 10px;
  padding: 1.75rem;
  border: 1px solid var(--gris-claro);
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  box-sizing: border-box;
  transition: box-shadow 0.2s, transform 0.2s;
}

.testi-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.testi-prev,
.testi-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gris-claro);
  background: var(--blanco);
  color: var(--negro);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.testi-prev { left: -22px; }
.testi-next { right: -22px; }

.testi-prev:hover,
.testi-next:hover {
  background: var(--verde);
  border-color: var(--verde);
  color: var(--blanco);
  transform: translateY(-50%) scale(1.08);
}

.testi-prev:disabled,
.testi-next:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gris-claro);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.testi-dot.active {
  background: var(--verde);
  transform: scale(1.35);
}

@media (max-width: 900px) {
  .testi-card { flex: 0 0 calc(50% - 0.75rem); }
}

@media (max-width: 580px) {
  .testi-card { flex: 0 0 88%; }
  .testi-prev { left: 0; }
  .testi-next { right: 0; }
}