
    /* Efecto de entrada/salida suave */
    .tarmex-section {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .tarmex-section.tarmex-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .tarmex-hero, .tarmex-hero * { box-sizing: border-box; }

    .tarmex-hero {
        font-family: 'Montserrat', sans-serif;
        font-style: italic;
        width: 100%;
        min-height: 500px;
        margin: 0;
        background-image: url('//ueeshop.ly200-cdn.com/u_file/UPAW/UPAW568/2606/01/photo/imperialfondo-191a.jpg');
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        overflow: hidden;
        gap: 10px; 
    }

    .tarmex-hero::before {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.6);
        pointer-events: none;
    }

    .tarmex-column {
        flex: 1;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 15px;
        color: white;
        text-align: center;
        min-width: 0;
    }

    .tarmex-img-wrap {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 10px 0;
        overflow: hidden;
    }

    .tarmex-img { 
        width: 100%;        
        max-width: 400px; 
        height: auto; 
        object-fit: contain;
        transition: transform 0.4s ease-out; 
    }

    .tarmex-img:hover { transform: scale(1.05); }

    .tarmex-column h2 { font-size: 1.6rem; margin-bottom: 5px; color: white; }
    .tarmex-column p { max-width: 380px; margin-bottom: 10px; font-size: 0.95rem; color: white; }

    .tarmex-btn {
        padding: 10px 30px;
        border: none;
        cursor: pointer;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
        border-radius: 50px;
        font-style: normal;
        transition: all 0.3s ease;
        background-color: #e60000;
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        margin-top: auto;
    }

    .tarmex-btn:hover {
        background-color: #ff0000;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(230,0,0,0.4);
    }

    @media (max-width: 768px) {
        .tarmex-hero { flex-direction: column; height: auto; padding: 20px 0; }
    }
