@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");


:root {
  --font-primary: "Helvetica Neue";
  --font-secondary: "Helvetica Neue";

  --color-text: #fff;
  --color-text-secondary: #eaeaea;

  --color-bg: #2a2a2a;
  --color-bg-secondary: #131416;

  --color-callout: #24262a;

  --background-color: #2a2a2a;

  /* Typography Scale - Desktop */
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 28px;
  --font-size-4xl: 32px;
  --font-size-5xl: 40px;
  --font-size-6xl: 48px;
  --font-size-7xl: 56px;

  /* Logo Sizes - Desktop */
  --logo-nav: 120px;
  --logo-section: 300px;
  --logo-product: 320px;
  --logo-footer: 200px;
}

/* Typography Scale - Tablet */
@media (max-width: 1024px) {
  :root {
    --font-size-xs: 10px;
    --font-size-sm: 11px;
    --font-size-base: 13px;
    --font-size-md: 15px;
    --font-size-lg: 17px;
    --font-size-xl: 19px;
    --font-size-2xl: 22px;
    --font-size-3xl: 26px;
    --font-size-4xl: 28px;
    --font-size-5xl: 36px;
    --font-size-6xl: 42px;
    --font-size-7xl: 50px;

    --logo-nav: 100px;
    --logo-section: 250px;
    --logo-product: 280px;
    --logo-footer: 180px;
  }
}

/* Typography Scale - Mobile */
@media (max-width: 768px) {
  :root {
    --font-size-xs: 9px;
    --font-size-sm: 10px;
    --font-size-base: 12px;
    --font-size-md: 13px;
    --font-size-lg: 15px;
    --font-size-xl: 17px;
    --font-size-2xl: 20px;
    --font-size-3xl: 22px;
    --font-size-4xl: 24px;
    --font-size-5xl: 28px;
    --font-size-6xl: 32px;
    --font-size-7xl: 40px;

    --logo-nav: 80px;
    --logo-section: 200px;
    --logo-product: 200px;
    --logo-footer: 150px;
  }
}

/* Typography Scale - Small Mobile */
@media (max-width: 480px) {
  :root {
    --font-size-xs: 8px;
    --font-size-sm: 9px;
    --font-size-base: 11px;
    --font-size-md: 12px;
    --font-size-lg: 13px;
    --font-size-xl: 15px;
    --font-size-2xl: 18px;
    --font-size-3xl: 20px;
    --font-size-4xl: 22px;
    --font-size-5xl: 24px;
    --font-size-6xl: 28px;
    --font-size-7xl: 32px;

    --logo-nav: 70px;
    --logo-section: 180px;
    --logo-product: 180px;
    --logo-footer: 120px;
  }
}

section{
  background-color: #2a2a2a;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Inter";
  background-color: var(--background-color);
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  position: relative;
  max-width: 100vw;
}

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

a,
p {
  text-decoration: none;
  color: #fff;
  font-size: var(--font-size-base);
  line-height: 1.5;
}

h1 {
  font-size: var(--font-size-7xl);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 1px;
}

h2 {
  font-size: var(--font-size-5xl);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

h3 {
  font-size: var(--font-size-3xl);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.3px;
}


.slider {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 60vh;
  overflow: hidden;
}

.slider-images {
  position: absolute;
  width: 100%;
  height: 100%;
}

.img {
  position: absolute;
  width: 100%;
  height: 100%;
  
}


.slider-indicators {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  display: flex;
  justify-content: space-between;
}

.slider-indicators p {
  position: relative;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 200;
  will-change: transform;
}

.slider-preview {
  position: absolute;
  bottom: 1.5em;
  right: 2em;
  width: 35%;
  height: 40px;
  display: flex;
  gap: 0.8em;
}

.preview {
  position: relative;
  flex: 1;
  cursor: pointer;
}

.preview::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.3s ease-in-out;
}

.preview.active::after {
  background-color: rgba(0, 0, 0, 0);
}

@media (max-width: 900px) {
  .slider-indicators {
    width: 90%;
  }

  .slider-indicators p {
    font-size: var(--font-size-lg);
  }

  .slider-preview {
    width: 90%;
    bottom: 3em;
    height: 35px;
  }
}




.experience-section {
    width: 100%;
    max-width: 100vw;
    background: #f2f2f2;
    padding: 80px 40px 60px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    box-sizing: border-box;
    overflow-x: hidden;
}

.experience-grid {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 360px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-card {
    position: relative;
    color: #fff;
    display: flex;
    align-items: flex-end;
}

.experience-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.newsletter-card {
    background-image: linear-gradient(rgba(230, 0, 18, 0.88), rgba(230, 0, 18, 0.78)), url("../assets/img1.webp");
    background-size: cover;
    background-position: center;
}

.live-store-card {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../assets/localimg.webp");
    background-size: cover;
    background-position: center;
}

.experience-card .card-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 520px;
}

.card-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.card-description {
    font-size: var(--font-size-md);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.newsletter-form {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 220px;
    padding: 14px 18px;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    color: #1a1a1a;
}

.newsletter-form button {
    padding: 14px 32px;
    border-radius: 8px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #fff;
    color: #e60012;
}

.card-button {
    align-self: flex-start;
    padding: 12px 32px;
    border-radius: 8px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-button:hover {
    background: #fff;
    color: #000;
}

.experience-highlights {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.highlight-item {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(230, 0, 18, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 32px;
    height: 32px;
    stroke: #e60012;
}

.highlight-text h4 {
    font-size: var(--font-size-md);
    font-weight: 700;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.highlight-text p {
    font-size: var(--font-size-sm);
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .experience-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .experience-card .card-content {
        padding: 50px 40px;
        max-width: none;
    }

    .card-title {
        letter-spacing: 4px;
    }

    .experience-highlights {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {

    .experience-section {
        padding: 40px 15px 30px;
        gap: 30px;
    }

    .experience-card .card-content {
        padding: 30px 20px;
        gap: 12px;
    }

    .card-title {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .card-description {
        font-size: 13px;
        line-height: 1.5;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .experience-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .highlight-item {
        padding: 16px 12px;
        gap: 10px;
        border-radius: 12px;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
    }

    .highlight-icon svg {
        width: 20px;
        height: 20px;
    }

    .highlight-text h4 {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .highlight-text p {
        font-size: 11px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {

    .experience-section {
        padding: 30px 12px 25px;
        gap: 25px;
    }

    .experience-card .card-content {
        padding: 25px 15px;
        gap: 10px;
    }

    .card-title {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .card-description {
        font-size: 12px;
        line-height: 1.4;
    }

    .experience-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .highlight-item {
        padding: 14px 10px;
        gap: 8px;
        border-radius: 10px;
    }

    .highlight-icon {
        width: 35px;
        height: 35px;
    }

    .highlight-icon svg {
        width: 18px;
        height: 18px;
    }

    .highlight-text h4 {
        font-size: 11px;
        letter-spacing: 0.3px;
    }

    .highlight-text p {
        font-size: 10px;
        line-height: 1.3;
    }
}

/* ============================================
   SECCIÓN PRODUCTO CB100
   ============================================ */

.product-section {
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    background: #e8e8e8;
    padding: 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;
    box-sizing: border-box;
}

.product-section-header {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    padding-top: 20px;
    gap: 20px;
}

.product-section-logo {
    max-width: var(--logo-section);
    width: auto;
    height: auto;
    max-height: clamp(50px, 8vh, 80px);
    object-fit: contain;
    display: block;
}

.product-section-subtitle {
    font-size: var(--font-size-md);
    color: #666;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: left;
    margin: 0;
    white-space: nowrap;
}

.product-tabs {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 25px;
    padding: 0 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.product-tabs::-webkit-scrollbar {
    height: 6px;
}

.product-tabs::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 999px;
}

.product-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 12px 12px 0 0;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.product-tab.active,
.product-tab:focus-visible {
    background: #e60012;
    color: #fff;
    outline: none;
    box-shadow: 0 12px 24px rgba(230, 0, 18, 0.35);
}

.product-tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.product-tab-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-tab-icon svg {
    width: 18px;
    height: 18px;
}

.product-tab.active .product-tab-icon img {
    filter: brightness(0) invert(1);
}

.product-tab-label {
    white-space: nowrap;
}

.product-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-direction: column;
}

.product-logo {
    max-width: var(--logo-product);
    width: auto;
    height: clamp(60px, 10vh, 90px);
    max-height: clamp(60px, 10vh, 90px);
    object-fit: contain;
    display: block;
}

.product-logo.is-hidden {
    display: none;
}

.product-name {
    font-size: var(--font-size-7xl);
    font-weight: 300;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: none;
}

.product-name.is-visible {
    display: block;
}

.product-badge {
    display: inline-block;
    background: #e60012;
    color: white;
    padding: 4px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.product-title {
    font-size: 72px;
    font-weight: 300;
    color: #000;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
}

.product-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: calc(100vh - 140px);
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    grid-template-rows: 1fr;
    gap: 30px;
    align-items: start;
    justify-items: center;
    flex: 1;
    margin: 0 auto;
}

/* Imagen principal de la moto */
.product-main-image {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 280px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 auto;
}

.product-main-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

/* Sección de imágenes seleccionables (izquierda) */
.image-gallery-section {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    z-index: 10;
    position: relative;
    padding-top: 20px;
    width: 100%;
    align-self: start;
}

.image-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.image-option {
    width: 100%;
    max-width: 150px;
    height: 100px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-option:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.image-option.active {
    border-color: #e60012;
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
}

.image-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Sección derecha con botones */
.right-section {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 20px;
    z-index: 10;
    position: relative;
    padding-top: 20px;
    width: 100%;
    align-self: start;
}

.ficha-tecnica-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e60012;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 180px;
    box-sizing: border-box;
}

.ficha-tecnica-btn:hover {
    transform: translateY(-5px);
    background: #e60012;
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
}

.ficha-tecnica-btn:hover .btn-icon {
    color: white;
}

.ficha-tecnica-btn:hover .btn-label {
    color: white;
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e60012;
    transition: color 0.3s ease;
}

.btn-icon svg {
    width: 24px;
    height: 24px;
}

.btn-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #e60012;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* Modal Ficha Técnica */
.ficha-tecnica-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.ficha-tecnica-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ficha-tecnica-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.ficha-tecnica-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10001;
}

.ficha-tecnica-modal.active .ficha-tecnica-content {
    transform: scale(1);
}

.ficha-tecnica-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: all 0.3s ease;
    color: #333;
}

.ficha-tecnica-close:hover {
    background: #e60012;
    color: white;
    transform: rotate(90deg);
}

.ficha-tecnica-close svg {
    width: 20px;
    height: 20px;
}

.ficha-tecnica-header {
    background: #e60012;
    color: white;
    padding: 30px 40px;
    text-align: center;
}

.ficha-tecnica-header h2 {
    font-size: var(--font-size-4xl);
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.ficha-tecnica-body {
    padding: 30px 40px;
    max-height: calc(90vh - 140px);
    overflow-y: auto;
}

.ficha-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s ease;
}

.ficha-row:last-child {
    border-bottom: none;
}

.ficha-row:hover {
    background: #f5f5f5;
}

.ficha-label {
    font-weight: 600;
    color: #333;
    font-size: var(--font-size-base);
    letter-spacing: 0.5px;
}

.ficha-value {
    color: #666;
    font-size: var(--font-size-base);
    line-height: 1.5;
}

/* Responsive para el modal */
@media (max-width: 768px) {
    .ficha-tecnica-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .ficha-tecnica-header {
        padding: 20px 20px;
    }
    
    .ficha-tecnica-header h2 {
        font-size: 24px;
    }
    
    .ficha-tecnica-body {
        padding: 20px;
        max-height: calc(95vh - 100px);
    }
    
    .ficha-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px 0;
    }
    
    .ficha-label {
        font-size: 13px;
    }
    
    .ficha-value {
        font-size: 13px;
    }
}

/* ============================================
   MODAL VER MÁS - DESCRIPCIÓN DE MOTO
   ============================================ */

.ver-mas-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.ver-mas-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ver-mas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.ver-mas-content {
    position: relative;
    background: white;
    width: 90%;
    height: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10001;
    display: flex;
    flex-direction: column;
}

.ver-mas-modal.active .ver-mas-content {
    transform: scale(1);
}

.ver-mas-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(230, 0, 18, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10003;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.ver-mas-close:hover {
    background: #e60012;
    color: white;
    border-color: #e60012;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.4);
}

.ver-mas-close svg {
    width: 20px;
    height: 20px;
}

.ver-mas-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    height: 100%;
    overflow: hidden;
}

/* Sidebar Izquierdo con Botones */
.ver-mas-sidebar {
    background: #f5f5f5;
    padding: 30px 20px;
    overflow-y: auto;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-btn {
    width: 100%;
    padding: 20px 25px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.sidebar-btn:hover {
    background: #f9f9f9;
    border-color: #e60012;
    transform: translateX(5px);
}

.sidebar-btn.active {
    background: #e60012;
    color: white;
    border-color: #e60012;
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
}

.sidebar-btn.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: white;
    border-radius: 0 4px 4px 0;
}

.sidebar-btn .btn-text {
    position: relative;
    z-index: 1;
}

.ficha-content {
    font-size: 14px;
    background: white;
    border-radius: 8px;
    padding: 20px;
}

.ficha-content .ficha-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.ficha-content .ficha-row:last-child {
    border-bottom: none;
}

.ficha-content .ficha-label {
    font-weight: 600;
    color: #333;
    font-size: 12px;
    margin-bottom: 4px;
}

.ficha-content .ficha-value {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: #e60012;
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenido Principal Derecho */
.ver-mas-main {
    padding: 40px;
    padding-top: 60px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.main-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.main-logo {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.main-title {
    font-size: 36px;
    font-weight: 300;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* Secciones de contenido */
.main-content-section {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.main-content-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para especificaciones */
.specs-content {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.specs-content p {
    margin-bottom: 15px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 6px;
    border-left: 4px solid #e60012;
}

.specs-content strong {
    color: #e60012;
    font-weight: 600;
}

/* Estilos para la sección de descripción dentro del modal */
.product-showcase-modal {
    margin-top: 30px;
    width: 100%;
}

.hero-section-modal {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.hero-image-modal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Navigation Tabs dentro del modal */
.nav-tabs-modal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0 0 8px 8px;
}

.tab-item-modal {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    background: rgba(255, 255, 255, 0.9);
}

.tab-item-modal:hover {
    background: rgba(255, 255, 255, 1);
}

.tab-item-modal.active {
    border-bottom-color: #e60012;
    background: rgba(255, 255, 255, 1);
}

.tab-item-modal.active .tab-number-modal {
    color: #e60012;
    font-weight: bold;
}

.tab-item-modal.active .tab-label-modal {
    color: #e60012;
    font-weight: bold;
}

.tab-number-modal {
    font-size: 18px;
    font-weight: 300;
    color: #666;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.tab-label-modal {
    font-size: 10px;
    font-weight: 500;
    color: #666;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Content Section dentro del modal */
.content-section-modal {
    background: #f9f9f9;
    color: #333;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
}

.tab-content-modal {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.tab-content-modal.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content-modal h2 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #000;
}

.divider-modal {
    width: 60px;
    height: 2px;
    background: #e60012;
    margin: 0 auto 20px;
}

.tab-content-modal p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    text-align: justify;
}

/* Responsive para Modal Ver Más */
@media (max-width: 1200px) {
    .ver-mas-container {
        grid-template-columns: 300px 1fr;
    }
    
    .ver-mas-sidebar {
        padding: 25px 15px;
    }
    
    .ver-mas-main {
        padding: 30px;
        padding-top: 50px;
    }
    
    .ver-mas-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 900px) {
    .ver-mas-content {
        width: 95%;
        height: 95%;
    }
    
    .ver-mas-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    
    .ver-mas-sidebar {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 15px;
        gap: 10px;
    }
    
    .sidebar-btn {
        min-width: 180px;
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .ver-mas-main {
        padding: 20px;
        padding-top: 45px;
        overflow-y: auto;
    }
    
    .ver-mas-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }
    
    .main-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .ver-mas-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    
    .ver-mas-sidebar {
        padding: 12px;
        gap: 8px;
    }
    
    .sidebar-btn {
        min-width: 150px;
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .ver-mas-main {
        padding: 15px;
        padding-top: 40px;
        gap: 20px;
    }
    
    .ver-mas-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
    
    .ver-mas-close svg {
        width: 18px;
        height: 18px;
    }
    
    .main-header {
        gap: 10px;
    }
    
    .main-logo {
        max-width: 150px;
    }
    
    .main-title {
        font-size: 24px;
    }
    
    .specs-content {
        font-size: 14px;
    }
    
    .ficha-content {
        font-size: 12px;
        padding: 15px;
    }
}

/* Botones de acción (derecha) */
.action-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    width: 100%;
    z-index: 20;
    position: relative;
}

.action-btn {
    padding: 15px 30px;
    font-size: var(--font-size-base);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 180px;
    text-align: center;
    box-sizing: border-box;
}

.primary-btn {
    background: #e60012;
    color: white;
}

.primary-btn:hover {
    background: #cc0010;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
}

.secondary-btn {
    background: transparent;
    color: #e60012;
    border: 2px solid #e60012;
}

.secondary-btn:hover {
    background: #e60012;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.2);
}

/* Iconos flotantes (esquina inferior derecha) */

/* Responsive - Tablet */
@media (max-width: 1200px) {
    .product-section {
        padding: 15px 40px;
    }
    
    .product-section-header {
        margin-bottom: 20px;
        padding-top: 15px;
        gap: 15px;
        flex-direction: row;
    }
    
    .product-section-logo {
        max-width: 250px;
        max-height: 70px;
    }
    
    .product-section-subtitle {
        font-size: 15px;
        white-space: normal;
    }
    
    .product-tabs {
        padding: 0 0 12px;
        gap: 10px;
    }
    
    .product-tab {
        padding: 7px 14px;
        font-size: 10px;
    }
    
    .product-tab-icon {
        width: 22px;
        height: 22px;
    }
    
    .product-container {
        grid-template-columns: 150px 1fr 150px;
        gap: 25px;
        min-height: calc(100vh - 180px);
        align-items: start;
    }
    
    .product-main-image {
        padding: 15px;
        overflow: hidden;
    }
    
    .product-main-image img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }
    
    .product-header {
        margin-bottom: 15px;
    }
    
    .product-logo {
        max-width: 280px;
        height: 80px;
        max-height: 80px;
    }
    
    .action-btn {
        padding: 12px 30px;
        font-size: 13px;
        width: 180px;
    }
    
    .ficha-tecnica-btn {
        width: 180px;
    }
}

/* Responsive - Mobile Landscape / Tablet Pequeña */
@media (max-width: 900px) {
    .product-section {
        padding: 15px 30px;
        min-height: 100vh;
    }
    
    .product-section-header {
        margin-bottom: 20px;
        padding-top: 10px;
        gap: 12px;
        flex-direction: column;
    }
    
    .product-section-logo {
        max-width: 200px;
        max-height: 60px;
    }
    
    .product-section-subtitle {
        font-size: 14px;
        text-align: center;
        white-space: normal;
    }
    
    .product-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        margin-bottom: 20px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: thin;
        scrollbar-color: rgba(230, 0, 18, 0.5) transparent;
    }
    
    .product-tabs::-webkit-scrollbar {
        height: 8px;
    }
    
    .product-tabs::-webkit-scrollbar-thumb {
        background: rgba(230, 0, 18, 0.5);
        border-radius: 999px;
    }
    
    .product-tabs::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 999px;
    }
    
    .product-header {
        margin-bottom: 10px;
    }
    
    .product-logo {
        max-width: 240px;
        height: 75px;
        max-height: 75px;
    }
    
    .product-container {
        grid-template-columns: 120px 1fr 120px;
        gap: 20px;
        min-height: calc(100vh - 200px);
        align-items: start;
    }
    
    .product-main-image {
        padding: 15px;
        overflow: hidden;
    }
    
    .product-main-image img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
    }
    
    .action-buttons {
        gap: 15px;
        margin-top: 15px;
    }
    
    .action-btn {
        padding: 10px 25px;
        font-size: 12px;
        width: 180px;
    }
    
    .ficha-tecnica-btn {
        width: 180px;
    }
}

/* Responsive - Mobile Portrait */
@media (max-width: 768px) {
    .product-section {
        padding: 10px 20px;
        min-height: 100vh;
    }
    
    .product-section-header {
        margin-bottom: 15px;
        padding-top: 10px;
        gap: 10px;
        flex-direction: column;
    }
    
    .product-section-logo {
        max-width: 180px;
        max-height: 50px;
    }
    
    .product-section-subtitle {
        font-size: 13px;
        text-align: center;
        white-space: normal;
    }
    
    .product-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 12px;
        margin-bottom: 15px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .product-tabs::-webkit-scrollbar {
        height: 6px;
    }
    
    .product-tabs::-webkit-scrollbar-thumb {
        background: rgba(230, 0, 18, 0.6);
    }
    
    .product-tab {
        padding: 8px 16px;
        font-size: 10px;
        gap: 8px;
        flex-shrink: 0;
        min-width: fit-content;
    }
    
    .product-tab-icon {
        width: 22px;
        height: 22px;
    }
    
    .product-tab-label {
        font-size: 10px;
        letter-spacing: 0.3px;
    }
    
    .product-header {
        margin-bottom: 8px;
    }
    
    .product-logo {
        max-width: 200px;
        height: 65px;
        max-height: 65px;
    }
    
    .product-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto auto;
        gap: 15px;
        min-height: calc(100vh - 250px);
    }
    
    .product-main-image {
        grid-column: 1;
        grid-row: 2;
        height: 100%;
        min-height: 300px;
        max-height: 400px;
        padding: 15px;
    }
    
    .product-main-image img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
    }
    
    .image-gallery-section {
        grid-column: 1;
        grid-row: 1;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .image-options {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .image-option {
        max-width: 80px;
        height: 60px;
    }
    
    .right-section {
        grid-column: 1;
        grid-row: 3;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }
    
    .ficha-tecnica-btn {
        padding: 12px 20px;
        gap: 10px;
        width: 150px;
    }
    
    .btn-icon {
        width: 35px;
        height: 35px;
    }
    
    .btn-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .btn-label {
        font-size: 10px;
    }
    
    .action-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }
    
    .action-btn {
        padding: 10px 20px;
        font-size: 11px;
        width: 150px;
    }
    
}

/* Responsive - Mobile Pequeño */
@media (max-width: 480px) {
    .product-section {
        padding: 8px 15px;
        min-height: 100vh;
    }
    
    .product-section-header {
        margin-bottom: 12px;
        padding-top: 8px;
        gap: 8px;
        flex-direction: column;
    }
    
    .product-section-logo {
        max-width: 150px;
        max-height: 40px;
    }
    
    .product-section-subtitle {
        font-size: 12px;
        text-align: center;
        white-space: normal;
    }
    
    .product-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 6px;
        margin-bottom: 12px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .product-tabs::-webkit-scrollbar {
        height: 5px;
    }
    
    .product-tabs::-webkit-scrollbar-thumb {
        background: rgba(230, 0, 18, 0.6);
        border-radius: 999px;
    }
    
    .product-tabs::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 999px;
    }
    
    .product-tab {
        padding: 6px 12px;
        font-size: 9px;
        gap: 6px;
        flex-shrink: 0;
        min-width: fit-content;
    }
    
    .product-tab-icon {
        width: 18px;
        height: 18px;
    }
    
    .product-tab-label {
        font-size: 9px;
        letter-spacing: 0.2px;
    }
    
    .product-header {
        margin-bottom: 6px;
    }
    
    .product-logo {
        max-width: 180px;
        height: 55px;
        max-height: 55px;
    }
    
    .product-container {
        min-height: calc(100vh - 280px);
        gap: 12px;
    }
    
    
    .image-option {
        max-width: 60px;
        height: 50px;
    }
    
    .ficha-tecnica-btn {
        padding: 10px 15px;
        gap: 8px;
        width: 100%;
    }
    
    .btn-icon {
        width: 30px;
        height: 30px;
    }
    
    .btn-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .btn-label {
        font-size: 9px;
    }
    
    .action-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .action-btn {
        width: 100%;
        padding: 12px;
        font-size: 11px;
    }
    
}

/* ============================================
   BANNER DE TRES SECCIONES
   ============================================ */

.banner-three-wrapper {
    width: 100%;
    max-width: 100vw;
    background: #fff;
    padding: 60px 40px 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.banner-three-wrapper .banner-three-section {
    margin: 0 -40px;
    width: calc(100% + 80px);
    max-width: 100vw;
}

.banner-three-header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
}

.banner-three-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.banner-three-description {
    font-size: var(--font-size-lg);
    color: #666;
    margin: 0;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.banner-three-button {
    display: inline-block;
    margin-top: 30px;
    padding: clamp(14px, 2vh, 18px) clamp(30px, 4vw, 40px);
    background-color: #e60012;
    color: #fff;
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.5px;
}

.banner-three-button:hover {
    background-color: #c50010;
    transform: translateY(-2px);
}

.banner-three-section {
    width: 100%;
    height: 40vh;
    background: #fff;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.banner-three-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    overflow: hidden;
}

.banner-item {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.banner-item:hover {
    transform: scale(1.02);
    z-index: 10;
}

.banner-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    max-width: 100%;
    max-height: 100%;
}

.banner-item:hover .banner-image-wrapper img {
    transform: scale(1.1);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    box-sizing: border-box;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.banner-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.banner-text {
    font-size: var(--font-size-md);
    color: #fff;
    margin: 0;
    text-align: center;
    line-height: 1.5;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    max-width: 90%;
}

/* Responsive para tablets */
@media (max-width: 1024px) {
    .banner-three-wrapper {
        padding: 50px 30px 0;
    }
    
    .banner-three-wrapper .banner-three-section {
        margin: 0 -30px;
        width: calc(100% + 60px);
    }
    
    .banner-three-header {
        margin-bottom: 35px;
    }
    
    .banner-three-title {
        font-size: var(--font-size-3xl);
    }
    
    .banner-three-description {
        font-size: var(--font-size-md);
    }
    
    .banner-three-button {
        font-size: var(--font-size-md);
        padding: 16px 36px;
    }
    
    .banner-three-section {
        height: 50vh;
    }
    
    .banner-three-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
    
    .banner-title {
        font-size: var(--font-size-3xl);
    }
    
    .banner-text {
        font-size: var(--font-size-md);
    }
}

/* Responsive para tablets pequeñas */
@media (max-width: 900px) {
    .banner-three-wrapper {
        padding: 40px 25px 0;
    }
    
    .banner-three-wrapper .banner-three-section {
        margin: 0 -25px;
        width: calc(100% + 50px);
    }
    
    .banner-three-header {
        margin-bottom: 30px;
    }
    
    .banner-three-title {
        font-size: var(--font-size-2xl);
    }
    
    .banner-three-description {
        font-size: var(--font-size-md);
    }
    
    .banner-three-button {
        font-size: var(--font-size-md);
        padding: 15px 32px;
        margin-top: 25px;
    }
    
    .banner-three-section {
        height: 75vh;
    }
    
    .banner-three-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 25vh);
    }
    
    .banner-item {
        height: 25vh;
    }
    
    .banner-overlay {
        padding: 25px;
    }
    
    .banner-title {
        font-size: var(--font-size-2xl);
    }
    
    .banner-text {
        font-size: var(--font-size-base);
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .banner-three-wrapper {
        padding: 35px 20px 0;
    }
    
    .banner-three-wrapper .banner-three-section {
        margin: 0 -20px;
        width: calc(100% + 40px);
    }
    
    .banner-three-header {
        margin-bottom: 25px;
    }
    
    .banner-three-title {
        font-size: var(--font-size-xl);
    }
    
    .banner-three-description {
        font-size: var(--font-size-base);
    }
    
    .banner-three-button {
        font-size: var(--font-size-base);
        padding: 14px 28px;
        margin-top: 20px;
    }
    
    .banner-three-section {
        height: 75vh;
    }
    
    .banner-three-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 25vh);
    }
    
    .banner-item {
        height: 25vh;
    }
    
    .banner-overlay {
        padding: 20px;
    }
    
    .banner-title {
        font-size: var(--font-size-xl);
        margin-bottom: 10px;
    }
    
    .banner-text {
        font-size: var(--font-size-sm);
    }
}

/* Responsive para móviles pequeños */
@media (max-width: 480px) {
    .banner-three-wrapper {
        padding: 30px 15px 0;
    }
    
    .banner-three-wrapper .banner-three-section {
        margin: 0 -15px;
        width: calc(100% + 30px);
    }
    
    .banner-three-header {
        margin-bottom: 20px;
    }
    
    .banner-three-title {
        font-size: var(--font-size-lg);
    }
    
    .banner-three-description {
        font-size: var(--font-size-sm);
    }
    
    .banner-three-section {
        height: 75vh;
    }
    
    .banner-three-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 25vh);
    }
    
    .banner-item {
        height: 25vh;
    }
    
    .banner-overlay {
        padding: 15px;
    }
    
    .banner-title {
        font-size: var(--font-size-lg);
        margin-bottom: 8px;
    }
    
    .banner-text {
        font-size: var(--font-size-sm);
    }
}

/* ============================================
   SECCIÓN SOCIAL FEEDS (ELFSIGHT)
   ============================================ */

.social-feeds-section {
    width: 100%;
    max-width: 100vw;
    background: #f2f2f2;
    padding: 80px 40px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.social-feeds-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
}

.elfsight-feed-wrapper {
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
}

.elfsight-feed-wrapper > div {
    width: 100%;
    height: auto;
}

/* Responsive para tablets */
@media (max-width: 1024px) {
    .social-feeds-section {
        padding: 60px 30px;
    }
    
    .social-feeds-container {
        gap: 25px;
    }
}

/* Responsive para tablets pequeñas */
@media (max-width: 900px) {
    .social-feeds-section {
        padding: 50px 20px;
    }
    
    .social-feeds-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .elfsight-feed-wrapper {
        max-width: 100%;
        width: 100%;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .social-feeds-section {
        padding: 40px 15px;
    }
    
    .social-feeds-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .elfsight-feed-wrapper {
        max-width: 100%;
        width: 100%;
    }
}

/* Responsive para móviles pequeños */
@media (max-width: 480px) {
    .social-feeds-section {
        padding: 30px 10px;
    }
    
    .social-feeds-container {
        gap: 25px;
    }
}

/* ============================================
   SECCIÓN SOBRE NOSOTROS
   ============================================ */

.about-section {
    background-color: #fff;
    width: 100%;
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
}

.about-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Header */
.about-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-label {
    font-size: 16px;
    font-weight: 600;
    color: #e60012;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
}

.about-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
    font-family: "Inter", sans-serif;
}

/* Introducción */
.about-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro p {
    font-size: var(--font-size-md);
    line-height: 1.7;
    color: #666;
    font-family: "Inter", sans-serif;
}

/* Imagen Principal */
.about-main-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about-main-image img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    display: block;
}

/* Secciones de Contenido */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-story-section {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    align-items: center;
}

.about-story-section.reverse {
    grid-template-columns: 1fr 250px;
    direction: ltr;
}

.about-story-section.reverse .story-image {
    order: 2;
}

.about-story-section.reverse .story-content {
    order: 1;
}

.story-image {
    width: 100%;
    max-width: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    align-self: center;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    max-height: 300px;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .story-content {
        align-items: center !important;
    }
    
    .story-content p {
        text-align: center !important;
        width: 100%;
    }
    
    .story-title {
        text-align: center !important;
        width: 100%;
    }
    
    .about-story-section.reverse .story-content {
        align-items: center !important;
    }
    
    .about-story-section.reverse .story-content p {
        text-align: center !important;
        width: 100%;
    }
    
    .about-story-section.reverse .story-title {
        text-align: center !important;
        width: 100%;
    }
}

.story-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    font-family: "Inter", sans-serif;
}

.story-content p {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-family: "Inter", sans-serif;
    text-align: left;
}

.story-content strong {
    color: #e60012;
    font-weight: 700;
}


/* Responsive About Section */
@media (max-width: 1200px) {
    .about-section {
        padding: 60px 30px;
    }

    .about-container {
        gap: 40px;
    }

    .about-title {
        font-size: var(--font-size-3xl);
    }

    .about-intro p {
        font-size: var(--font-size-base);
    }

    .story-title {
        font-size: var(--font-size-xl);
    }

    .story-content p {
        font-size: var(--font-size-sm);
    }

    .about-story-section {
        grid-template-columns: 240px 1fr;
        gap: 25px;
    }

    .about-story-section.reverse {
        grid-template-columns: 1fr 240px;
    }

    .story-image {
        max-width: 240px;
    }

    .story-image img {
        max-height: 320px;
    }

    .about-main-image img {
        max-height: 350px;
    }

    .story-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px;
    }

    .about-container {
        gap: 30px;
    }

    .about-label {
        font-size: 13px;
    }

    .about-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .about-intro {
        text-align: left;
    }

    .about-intro p {
        font-size: 13px;
        line-height: 1.7;
    }

    .about-main-image {
        margin: 0;
    }

    .about-main-image img {
        max-height: 250px;
    }

    .about-content {
        gap: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .story-title {
        font-size: var(--font-size-lg);
        margin-bottom: 10px;
    }

    .about-story-section {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px;
        align-items: center;
        justify-content: center;
        min-height: auto;
    }

    .about-story-section.reverse {
        direction: ltr;
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        min-height: auto;
        height: auto;
    }

    .about-story-section.reverse .story-image {
        order: 0;
        display: none !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        visibility: hidden !important;
        position: absolute !important;
        opacity: 0 !important;
    }

    .about-story-section.reverse .story-content {
        order: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        margin: 0 auto;
        padding: 0;
    }

    .story-content {
        gap: 15px;
        align-items: flex-start !important;
        justify-content: center !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        margin: 0 auto;
    }

    .story-content p {
        font-size: var(--font-size-sm);
        line-height: 1.6;
        text-align: left !important;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .story-title {
        text-align: left !important;
        width: 100%;
    }

    .story-image {
        display: none;
    }

    .about-main-image {
        display: block;
    }

    .about-main-image img {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 30px 15px;
    }

    .about-container {
        gap: 25px;
    }

    .about-label {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .about-title {
        font-size: 20px;
    }

    .about-intro {
        text-align: left;
    }

    .about-intro p {
        font-size: 13px;
        line-height: 1.6;
    }

    .about-story-section {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .about-story-section.reverse {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .about-story-section.reverse .story-image {
        display: none !important;
        height: 0 !important;
        width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        visibility: hidden !important;
    }

    .about-story-section.reverse .story-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        margin: 0 auto !important;
        padding: 0;
        flex: 1;
    }

    .story-title {
        font-size: var(--font-size-lg);
        text-align: left !important;
        width: 100%;
    }

    .story-content {
        gap: 15px;
        align-items: flex-start !important;
        justify-content: center !important;
        width: 100%;
        align-self: center;
        justify-self: center;
    }

    .story-content p {
        text-align: left !important;
        margin: 0 auto;
        width: 100%;
        font-size: var(--font-size-sm);
        line-height: 1.6;
    }

    /* Texto alineado a la izquierda para sección reverse */
    .about-story-section.reverse .story-content {
        align-items: flex-start !important;
        text-align: left !important;
        align-self: center;
        justify-self: center;
    }

    .about-story-section.reverse .story-content p {
        text-align: left !important;
        width: 100%;
    }

    .about-story-section.reverse .story-title {
        text-align: left !important;
        width: 100%;
    }

    .story-content {
        align-self: center;
        justify-self: center;
    }


    /* Las imágenes de secciones ya están ocultas desde 768px, mantener la principal */
    .story-image {
        display: none;
    }

    .about-main-image {
        display: block;
    }

    .about-main-image img {
        max-height: 220px;
    }
}

/* ============================================
   SECCIÓN USADOS GARANTIZADOS
   ============================================ */

.used-cars-section {
    background-color: #e8e8e8;
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
}

.used-cars-container {
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    align-items: stretch;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Logo CAR ONE */
.car-one-logo {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.logo-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
}

.sucursal-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Panel de Información */
.info-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    min-height: fit-content;
    border-radius: 0;
}

.info-header {
    background-color: #e60012;
    padding: 10px 18px;
    width: 100%;
}

.info-header h2 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
}

/* Botones de Ubicación */
.location-buttons {
    display: flex;
    gap: 0;
    margin-top: 0;
}

.location-btn {
    flex: 1;
    padding: 8px 15px;
    border: 2px solid #e60012;
    border-top: none;
    background: transparent;
    color: #e60012;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
    border-radius: 0;
}

.location-btn:first-child {
    border-right: 1px solid #e60012;
}

.location-btn:last-child {
    border-left: 1px solid #e60012;
}

.location-btn:hover {
    background: #e60012;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.2);
}

.location-btn.active {
    background-color: #e60012;
    color: white;
    font-weight: 600;
}

.location-btn.active:hover {
    background-color: #cc0010;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
}

/* Caja de Información */
.info-box {
    background-color: white;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #d0d0d0;
    border-top: none;
    flex: 1;
}

/* Botones de WhatsApp */
.whatsapp-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    padding: 15px;
    background: #e60012;
    background-image: 
        radial-gradient(circle, rgba(204, 0, 16, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 8px;
}

.whatsapp-btn {
    width: 100%;
    padding: 10px 15px;
    background: white;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: "Inter", sans-serif;
    text-decoration: none;
    color: inherit;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    padding: 0;
    margin: 0;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.whatsapp-icon svg path {
    fill: #1a1a1a;
}

.whatsapp-text {
    flex: 1;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 500;
    text-align: left;
    font-family: "Inter", sans-serif;
}

.whatsapp-dots {
    color: #666;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    flex-shrink: 0;
    line-height: 1;
    transform: rotate(90deg);
}

.info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 5px;
    font-size: 12px;
    color: #1a1a1a;
    line-height: 1.5;
    font-family: "Inter", sans-serif;
}

.info-item .info-address,
.info-item .info-phone {
    width: 100%;
}

.info-address {
    color: #1a1a1a;
    text-decoration: underline;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: "Inter", sans-serif;
}

.info-address:hover {
    color: #e60012;
}

.info-phone {
    color: #1a1a1a;
    font-size: 12px;
    font-family: "Inter", sans-serif;
}

.info-label {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 12px;
    font-family: "Inter", sans-serif;
    flex-shrink: 0;
    white-space: nowrap;
}

.info-text {
    color: #666;
    font-size: 12px;
    margin-left: 0;
    font-family: "Inter", sans-serif;
    line-height: 1.4;
    flex: 1;
}

/* Responsive */
@media (max-width: 1200px) {
    .used-cars-section {
        padding: 25px 30px;
    }

    .used-cars-container {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 800px;
    }

    .logo-wrapper {
        max-height: 250px;
        overflow: hidden;
    }

    .sucursal-logo {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .info-panel {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .used-cars-section {
        padding: 30px 20px;
    }

    .logo-wrapper {
        max-height: 250px;
    }

    .info-header {
        padding: 12px 20px;
    }

    .info-header h2 {
        font-size: 14px;
    }

    .location-buttons {
        flex-direction: column;
    }

    .location-btn {
        padding: 12px 15px;
        font-size: 13px;
    }

    .location-btn:first-child {
        border-right: 2px solid #e60012;
        border-bottom: 1px solid #e60012;
    }

    .location-btn:last-child {
        border-left: 2px solid #e60012;
        border-top: none;
    }

    .info-box {
        padding: 20px;
        gap: 12px;
    }

    .info-item {
        font-size: 13px;
    }

    .whatsapp-buttons {
        padding: 15px;
        gap: 10px;
        margin-top: 8px;
    }

    .whatsapp-btn {
        padding: 12px 15px;
    }

    .whatsapp-text {
        font-size: 13px;
    }

    .whatsapp-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .used-cars-section {
        padding: 20px 15px;
    }

    .logo-wrapper {
        max-height: 200px;
    }

    .info-header {
        padding: 10px 15px;
    }

    .info-header h2 {
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .location-btn {
        padding: 10px 12px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .info-box {
        padding: 15px;
        gap: 10px;
    }

    .info-item {
        font-size: 12px;
        gap: 3px;
    }

    .info-label {
        font-size: 12px;
    }

    .info-text {
        font-size: 12px;
    }

    .info-address {
        font-size: 12px;
    }

    .info-phone {
        font-size: 12px;
    }

    .whatsapp-buttons {
        padding: 12px;
        gap: 8px;
    }

    .whatsapp-btn {
        padding: 10px 12px;
    }

    .whatsapp-text {
        font-size: 12px;
    }

    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }

    .whatsapp-dots {
        font-size: 16px;
    }
}

/* ============================================
   MODAL MAPA
   ============================================ */

.mapa-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.mapa-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mapa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.mapa-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    z-index: 10001;
    display: flex;
    flex-direction: column;
}

.mapa-modal.active .mapa-content {
    transform: scale(1);
}

.mapa-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e60012;
    color: #e60012;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: all 0.3s ease;
    padding: 0;
}

.mapa-close:hover {
    background: #e60012;
    color: white;
    transform: rotate(90deg);
}

.mapa-close svg {
    width: 24px;
    height: 24px;
}

.mapa-header {
    padding: 25px 30px;
    border-bottom: 2px solid #e0e0e0;
    background: #fff;
}

.mapa-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
}

.mapa-body {
    flex: 1;
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 450px;
}

.mapa-body iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
    display: block;
}

/* Responsive Modal Mapa */
@media (max-width: 768px) {
    .mapa-content {
        width: 95%;
        max-height: 85vh;
    }

    .mapa-header {
        padding: 20px;
    }

    .mapa-header h2 {
        font-size: 18px;
    }

    .mapa-body {
        min-height: 400px;
    }

    .mapa-body iframe {
        min-height: 400px;
    }

    .mapa-close {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
    }

    .mapa-close svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .mapa-content {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .mapa-header {
        padding: 15px;
    }

    .mapa-header h2 {
        font-size: 16px;
    }

    .mapa-body {
        min-height: 350px;
    }

    .mapa-body iframe {
        min-height: 350px;
    }
}

/* ============================================
   SLIDER DE IMÁGENES
   ============================================ */

.image-slider-section {
    width: 100%;
    max-width: 100vw;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.slider-track {
    position: relative;
    width: 100%;
    display: flex;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.slider-slide {
    width: 100%;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    position: relative;
    margin: 0;
    padding: 0;
}

.slider-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    line-height: 0;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .slider-slide img {
        max-height: 60vh;
    }
}

@media (max-width: 480px) {
    .slider-slide img {
        max-height: 50vh;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    color: #000;
    pointer-events: auto;
    margin: 0;
    padding: 0;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.slider-btn-prev {
    left: 20px;
}

.slider-btn-next {
    right: 20px;
}

/* Responsive para tablets */
@media (max-width: 1024px) {
    .slider-container {
        margin: 35px auto;
    }
}

/* Responsive para mobile */
@media (max-width: 768px) {
    .image-slider-section {
        width: 100%;
        max-width: 100vw;
    }

    .slider-container {
        margin: 30px auto;
        width: 100%;
        max-width: 100%;
    }

    .slider-wrapper {
        width: 100%;
        line-height: 0;
    }

    .slider-track {
        width: 100%;
        line-height: 0;
    }

    .slider-slide {
        width: 100%;
    }

    .slider-slide img {
        width: 100%;
        max-height: 60vh;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        z-index: 1001;
        top: 50%;
        transform: translateY(-50%);
    }

    .slider-btn svg {
        width: 20px;
        height: 20px;
    }

    .slider-btn-prev {
        left: 10px;
    }

    .slider-btn-next {
        right: 10px;
    }
}

/* Responsive para mobile pequeño */
@media (max-width: 480px) {
    .image-slider-section {
        width: 100%;
        max-width: 100vw;
    }

    .slider-container {
        margin: 20px auto;
        width: 100%;
        max-width: 100%;
    }

    .slider-wrapper {
        width: 100%;
        line-height: 0;
    }

    .slider-track {
        width: 100%;
        line-height: 0;
    }

    .slider-slide {
        width: 100%;
    }

    .slider-slide img {
        width: 100%;
        max-height: 50vh;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        z-index: 1001;
        top: 50%;
        transform: translateY(-50%);
    }

    .slider-btn svg {
        width: 18px;
        height: 18px;
    }

    .slider-btn-prev {
        left: 5px;
    }

    .slider-btn-next {
        right: 5px;
    }
}

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

.main-footer {
    width: 100%;
    max-width: 100vw;
    background: #1a1a1a;
    padding: 50px 40px 20px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    max-width: var(--logo-footer);
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-redes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.redes-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
}

.redes-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.redes-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.redes-icon:hover {
    background: #e60012;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.4);
}

.redes-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-credit {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-credit p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.5px;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        gap: 30px;
    }

    .footer-logo img {
        max-width: var(--logo-footer);
    }

    .redes-title {
        font-size: var(--font-size-md);
    }

    .redes-icon {
        width: 40px;
        height: 40px;
    }

    .redes-icon svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 20px 15px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 25px;
    }

    .footer-logo {
        order: 1;
    }

    .footer-logo img {
        max-width: var(--logo-footer);
    }

    .footer-redes {
        order: 2;
        gap: 15px;
    }

    .redes-title {
        font-size: var(--font-size-base);
    }

    .redes-icons {
        gap: 15px;
    }

    .redes-icon {
        width: 40px;
        height: 40px;
    }

    .redes-icon svg {
        width: 20px;
        height: 20px;
    }

    .footer-credit {
        padding-top: 15px;
    }

    .footer-credit p {
        font-size: var(--font-size-xs);
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 30px 15px 12px;
    }

    .footer-container {
        gap: 25px;
        margin-bottom: 20px;
    }

    .footer-logo img {
        max-width: var(--logo-footer);
    }

    .footer-redes {
        gap: 12px;
    }

    .redes-title {
        font-size: var(--font-size-sm);
        letter-spacing: 0.5px;
    }

    .redes-icons {
        gap: 12px;
    }

    .redes-icon {
        width: 35px;
        height: 35px;
    }

    .redes-icon svg {
        width: 18px;
        height: 18px;
    }

    .footer-credit {
        padding-top: 12px;
    }

    .footer-credit p {
        font-size: var(--font-size-xs);
    }
}

