/* Fade in animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Secciones de producto */
.producto-section {
    padding-bottom: 60px;
}

.producto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
	
	width: 100%;
    max-width: 1310px;
    margin: auto;
    background-color: white;
	
    background: #fff;
    border-radius: 16px;
    padding: 40px 42px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;	
	
}

.producto-grid--reverse {
    direction: rtl;
}

.producto-grid--reverse > * {
    direction: ltr;
}

.producto-logo {
    height: 48px;
    margin-bottom: 16px;
	display: block;
}

.producto-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #0066ff;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.producto-texto h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111;
}

.producto-texto p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    max-width: 480px;
	line-height: 21px;
}

.producto-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.producto-link:hover {
    color: #0066ff;
}

.producto-imagen.img-derecha{
    position: relative;
    right: -42px;
    bottom: -40px;
}

.producto-imagen img {
    width: 100%;
    border-radius: 12px;
    /*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);*/
}

/* Sección cards / rotador */
.producto-section--cards {
    background: #fafafa;
    padding: 80px 0;
}

.producto-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 42px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.producto-card__icon {
    /*width: 64px;*/
    height: 64px;
    margin-bottom: 20px;
}

.producto-card__icon img {
   /* width: 100%;*/
    height: 100%;
    object-fit: contain;
}

.producto-card .producto-tag {
    margin-top: auto;
    margin-top: 8px;
}

.producto-card h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #111;
}

.producto-card p {
    font-size: 15px;
	line-height: 21px;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.producto-card .producto-link {
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .producto-grid {
        grid-template-columns: 1fr;
        gap: 0px;
		
    padding: 35px 22px;
    margin: 0px 15px;
    width: auto;
    }

    .producto-grid--reverse {
        direction: ltr;
    }

    .producto-texto h2 {
        font-size: 36px;
    }

    .producto-card h3 {
        font-size: 26px;
    }

    .producto-section {
        padding: 60px 0;
    }
.producto-imagen.img-derecha {
    position: relative;
    right: -22px;
    bottom: -35px;
}	
	
}

.swiper-slide {
    height: auto;
}
