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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333333;
    background-color: #ffffff;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 120px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 80px;
    width: auto;
}

.navigation {
    display: flex;
    gap: 8px;
}

.nav-item {
    padding: 8px 16px;
    font-size: 19px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    background-color: #000000;
    color: #ffffff;
}

/* HOME SECTION */
.home-section {
    margin-top: 120px;
    padding: 100px 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%),
                url('imagenes/images/imagen_camion_01.jpg') center/cover;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.home-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 4px;
    text-align: center;
}

.home-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #333333;
    letter-spacing: -0.5px;
}

.home-section p {
    font-size: 18px;
    color: #666666;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.btn-main {
    background-color: #000000;
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-main:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

/* SECCIONES */
section {
    padding: 100px 40px 80px 40px;
    border-bottom: 1px solid #e5e5e5;
    scroll-margin-top: 140px;
}

section:nth-child(odd) {
    background-color: #ffffff;
}

section:nth-child(even) {
    background-color: #f8f9fa;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 16px;
    color: #666666;
}

/* ========== NOSOTROS - OPCIÓN 4 ========== */
.nosotros-section {
    background-color: #ffffff;
}

.nosotros-intro {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 30px;
}

.nosotros-intro p {
    margin: 0;
    font-size: 16px;
    color: #333333;
    line-height: 1.7;
}

.nosotros-intro strong {
    color: #000000;
    font-weight: 700;
}

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

.nosotros-stat-box {
    padding: 20px;
    text-align: center;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nosotros-stat-box:hover {
    border-color: #000000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.nosotros-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.nosotros-stat-label {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
}

/* ========== PRODUCTOS - OPCIÓN 4 ========== */
.productos-section {
    background-color: #ffffff;
}

.repuestos-lista {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 30px;
    margin-bottom: 40px;
}

.repuestos-titulo {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 4px 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.repuestos-subtitulo {
    font-size: 14px;
    color: #666666;
    text-align: center;
    margin: 0 0 20px 0;
    font-style: italic;
}

.repuestos-acordeon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.repuesto-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.repuesto-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.repuesto-card.activo {
    border-color: #000000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.repuesto-imagen {
    background: #f0f0f0;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.repuesto-imagen-icono {
    font-size: 30px;
    color: #bbbbbb;
    position: absolute;
}

.repuesto-imagen img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.repuesto-card-info {
    padding: 16px;
}

.repuesto-card .repuesto-nombre {
    display: block;
    margin: 0 0 12px;
    font-size: 15px;
    color: #333333;
    font-weight: 700;
    line-height: 1.4;
}

/* PANEL DE DETALLE (estilo ficha de producto) */
.repuesto-detalle {
    grid-column: 1 / -1;
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 30px;
    margin-top: 4px;
    animation: slideDown 0.3s ease;
}

.repuesto-detalle-titulo {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 20px 0;
}

.repuesto-detalle-modelos,
.repuesto-detalle-specs {
    background: white;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.repuesto-detalle-modelos h4,
.repuesto-detalle-specs h4 {
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 12px 0;
}

.repuesto-detalle-modelo {
    font-size: 15px;
    color: #333333;
    padding: 6px 0;
    border-bottom: 1px solid #e5e5e5;
    margin: 0;
}

.repuesto-detalle-modelo:last-child {
    border-bottom: none;
}

.repuesto-spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
}

.repuesto-spec-item:last-of-type {
    border-bottom: none;
}

.repuesto-spec-label {
    color: #666666;
    font-weight: 600;
}

.repuesto-spec-value {
    color: #333333;
    font-weight: 700;
}

.btn-cotizar-grande-repuesto {
    display: block;
    text-align: center;
    background: #000000;
    color: white;
    padding: 16px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cotizar-grande-repuesto:hover {
    background: #1a1a1a;
}

.btn-cotizar {
    display: block;
    text-align: center;
    background: #000000;
    color: white;
    padding: 8px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cotizar:hover {
    background: #1a1a1a;
}

/* ========== EN DESARME ========== */
.desarmados-section {
    background-color: #f8f9fa;
}

/* ========== CONTACTO ========== */
.contacto-section {
    background-color: #ffffff;
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.contacto-columna {
    display: flex;
    flex-direction: column;
}

.contacto-columna h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    margin-top: 0;
}

.contacto-columna:first-child {
    background: white;
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.contacto-item {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}

.contacto-item:last-child {
    border-bottom: none;
}

.contacto-info {
    flex: 1;
}

.contacto-nombre {
    margin: 0 0 2px 0;
    font-size: 15px;
    font-weight: 700;
    color: #333333;
}

.contacto-link {
    margin: 0;
    font-size: 15px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
}

.contacto-link:hover {
    text-decoration: underline;
}

.contacto-direccion {
    margin: 0;
    font-size: 15px;
    color: #333333;
    line-height: 1.6;
}

.mapa-container {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 300px;
    border: 1px solid #e5e5e5;
}

/* SEGUNDA FILA: HORARIOS + CTA */
.contacto-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.contacto-box {
    padding: 24px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background: white;
}

.contacto-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 16px 0;
}

.horarios-tabla {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 4px;
    border-left: 4px solid #000000;
}

.horario-fila {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
    color: #333333;
}

.horario-dia {
    font-weight: 700;
    color: #000000;
}

.horario-tiempo {
    color: #666666;
}

/* CTA BOX */
.cta-box {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 24px;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-box h3 {
    color: white;
    margin: 0 0 12px 0;
}

.cta-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.btn-whatsapp-grande {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-whatsapp-grande:hover {
    background: #1ba851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* REDES SOCIALES */
.redes-sociales-section {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e5e5e5;
}

.redes-sociales-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 16px 0;
}

.redes-sociales {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-red-social {
    padding: 12px 24px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-red-social.facebook {
    background: #1877f2;
    color: white;
}

.btn-red-social.facebook:hover {
    background: #0a66c2;
    transform: translateY(-2px);
}

.btn-red-social.instagram {
    background: #E1306C;
    color: white;
}

.btn-red-social.instagram:hover {
    background: #c13584;
    transform: translateY(-2px);
}

.btn-red-social.tiktok {
    background: #000000;
    color: white;
    border: 1px solid #333333;
}

.btn-red-social.tiktok:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

/* ========== POPUP COMUNICADO OFICIAL ========== */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay.activo {
    display: flex;
}

.popup-box {
    background: #ffffff;
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 6px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.popup-cerrar {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #666666;
    padding: 4px 8px;
}

.popup-cerrar:hover {
    color: #000000;
}

.popup-titulo {
    font-size: 19px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px 0;
    padding-right: 30px;
    line-height: 1.4;
}

.popup-box p {
    font-size: 16px;
    color: #333333;
    line-height: 1.7;
    margin: 0 0 14px 0;
}

.popup-subtitulo {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 24px 0 10px 0;
}

.popup-lista {
    margin: 0 0 14px 0;
    padding-left: 20px;
}

.popup-lista li {
    font-size: 16px;
    color: #333333;
    line-height: 1.8;
}

.popup-alerta {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    padding: 16px;
    margin: 20px 0;
}

.popup-alerta strong {
    display: block;
    color: #856404;
    font-size: 15px;
    margin-bottom: 8px;
}

.popup-alerta p {
    margin: 0;
    font-size: 15px;
    color: #856404;
}

.popup-btn-entendido {
    display: block;
    width: 100%;
    background: #000000;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.popup-btn-entendido:hover {
    background: #1a1a1a;
}

@media (max-width: 480px) {
    .popup-box {
        padding: 24px 20px;
    }

    .popup-titulo {
        font-size: 17px;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contacto-grid {
        grid-template-columns: 1fr;
    }
    
    .contacto-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .mapa-container {
        height: 250px;
    }
    
    .cta-box {
        padding: 20px;
    }
}

/* ========== FOOTER ========== */
.footer {
    background-color: #000000;
    color: white;
    padding: 32px 40px;
    text-align: center;
}

.footer-content p {
    margin: 8px 0;
    font-size: 14px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .header-content {
        padding: 0 20px;
    }
    
    .navigation {
        gap: 8px;
    }
    
    .nav-item {
        font-size: 16px;
        padding: 6px 12px;
    }

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

    .nosotros-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        height: auto;
        min-height: 100px;
        padding: 12px 0;
    }

    .logo-img {
        height: 44px;
    }

    .header-content {
        flex-direction: column;
        justify-content: center;
        height: auto;
        gap: 10px;
        padding: 0 15px;
    }

    .navigation {
        justify-content: center;
        gap: 8px 14px;
        flex-wrap: wrap;
        width: 100%;
    }

    .nav-item {
        font-size: 15px;
        padding: 6px 12px;
    }

    .home-section {
        margin-top: 150px;
        padding: 60px 20px;
        background-attachment: scroll;
    }

    .home-section h1 {
        font-size: 32px;
    }

    .home-section p {
        font-size: 16px;
    }

    section {
        padding: 60px 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .repuestos-acordeon {
        grid-template-columns: repeat(2, 1fr);
    }

    .repuestos-lista {
        padding: 20px 14px;
    }

    .repuesto-detalle {
        padding: 20px 16px;
    }

    .repuesto-spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .nosotros-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header {
        min-height: 90px;
        padding: 10px 0;
    }

    .logo-img {
        height: 38px;
    }

    .header-content {
        gap: 8px;
    }

    .navigation {
        gap: 6px 10px;
    }

    .nav-item {
        font-size: 13px;
        padding: 5px 9px;
    }

    .home-section {
        margin-top: 160px;
    }

    .home-section h1 {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .repuestos-acordeon {
        grid-template-columns: 1fr;
    }
}
/* ========== CAMIONES EN DESARME - ACORDEÓN CON ICONOS ========== */
.desarmados-section {
    background-color: #f8f9fa;
}

.acordeon-desarmados {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acordeon-item {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}

.acordeon-item.activo {
    border-color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.acordeon-header {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.acordeon-header:hover {
    background: #f8f9fa;
}

.acordeon-item.activo .acordeon-header {
    background: #e8eef5;
}

.acordeon-icono {
    font-size: 32px;
    flex-shrink: 0;
    min-width: 50px;
    text-align: center;
}

.acordeon-titulo {
    flex: 1;
    text-align: left;
}

.acordeon-titulo h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 4px;
}

.acordeon-titulo p {
    margin: 0;
    font-size: 15px;
    color: #666666;
}

.acordeon-estado {
    flex-shrink: 0;
}

.estado-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.estado-badge.en-desarme {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
}

.estado-badge.completado {
    background: #d4edda;
    color: #155724;
    border: 1px solid #28a745;
}

.acordeon-flecha {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.acordeon-contenido {
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    padding: 24px;
    animation: slideDown 0.3s ease;
}

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

.contenido-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.contenido-columna {
    background: white;
    padding: 16px;
    border-radius: 4px;
    border-left: 4px solid #000000;
}

.contenido-columna h4 {
    margin: 0 0 12px 0;
    font-size: 14px;
    font-weight: 700;
    color: #000000;
}

.contenido-columna p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
}

.contenido-columna strong {
    color: #000000;
    font-weight: 700;
}

.piezas-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.piezas-lista li {
    font-size: 14px;
    color: #333333;
    padding: 6px 0;
    border-bottom: 1px solid #e5e5e5;
}

.piezas-lista li:last-child {
    border-bottom: none;
}

.contenido-acciones {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
}

.btn-whatsapp {
    background: #000000;
    color: white;
    padding: 14px 32px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contenido-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .acordeon-header {
        padding: 16px;
        gap: 12px;
    }
    
    .acordeon-icono {
        font-size: 24px;
        min-width: 40px;
    }
    
    .acordeon-titulo h3 {
        font-size: 14px;
    }
    
    .acordeon-titulo p {
        font-size: 12px;
    }
    
    .contenido-grid {
        grid-template-columns: 1fr;
    }
    
    .contenido-acciones {
        flex-direction: column;
    }
    
    .btn-whatsapp {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 20px 40px 20px;
    }
    
    /* HOME - Imagen VISIBLE en celular */
    .home-section {
        min-height: 100vh;
        background-attachment: scroll;
    }
    
    .home-section::before {
        background: rgba(0, 0, 0, 0.5);
    }
    
    .home-container {
        max-width: 90%;
        padding: 30px 20px;
    }
    
    .home-section h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .home-section p {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    /* Botones MÁS GRANDES */
    .btn-primary {
        padding: 16px 36px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
    
    .btn-cotizar {
        padding: 14px 16px;
        font-size: 14px;
        width: 100%;
    }
    
    .btn-whatsapp {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
    }
    
    .btn-whatsapp-grande {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
    }
    
    .btn-red-social {
        padding: 14px 20px;
        font-size: 14px;
        width: 100%;
    }
    
    /* Desarmados RESPONSIVO */
    .acordeon-header {
        padding: 16px;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .acordeon-icono {
        order: 1;
        font-size: 28px;
        min-width: 40px;
    }
    
    .acordeon-titulo {
        order: 2;
        flex-basis: 100%;
        margin-top: 8px;
        text-align: left;
    }
    
    .acordeon-titulo h3 {
        font-size: 15px;
    }
    
    .acordeon-titulo p {
        font-size: 13px;
    }
    
    .acordeon-estado {
        order: 3;
        flex-basis: 100%;
        margin-top: 8px;
    }
    
    .acordeon-flecha {
        order: 4;
        font-size: 18px;
    }
    
    .contenido-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contenido-columna {
        padding: 14px;
    }
    
    .contenido-columna h4 {
        font-size: 13px;
    }
    
    /* Contacto */
    .contacto-grid {
        grid-template-columns: 1fr;
    }
    
    .contacto-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .mapa-container {
        height: 250px;
    }
    
    .header-content {
        padding: 0 20px;
    }
}
