/* Platform Section - Estilo Moderno con Iconos */
.platform {
    background-color: var(--lighter-color);
    padding: 100px 0;
}

.platform-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.platform-info {
    flex: 1;
}

.platform-info h3 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.3;
}

.platform-info > p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.platform-features {
    margin: 50px 0;
}

.platform-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.platform-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
}

.feature-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--lighter-color) 0%, var(--white) 100%);
    border-radius: 12px;
    padding: 15px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.platform-feature:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-text {
    flex: 1;
}

.feature-text h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.platform-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-visual {
    width: 300px;
    height: 300px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.main-visual svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.floating-icon svg {
    width: 100%;
    height: 100%;
}

.floating-icon.icon-1 {
    top: 50px;
    left: 20px;
    animation-delay: 0s;
    background: linear-gradient(135deg, var(--lighter-color) 0%, var(--white) 100%);
}

.floating-icon.icon-2 {
    top: 80px;
    right: 30px;
    animation-delay: 1.5s;
    background: linear-gradient(135deg, #fff8f0 0%, var(--white) 100%);
}

.floating-icon.icon-3 {
    bottom: 60px;
    left: 40px;
    animation-delay: 3s;
    background: linear-gradient(135deg, #f0f8ff 0%, var(--white) 100%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.platform .btn-large {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.platform .btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.4);
}

/* Platform Responsive */
@media (max-width: 1200px) {
    .platform-content {
        gap: 60px;
    }
    
    .platform-visual {
        height: 450px;
    }
    
    .main-visual {
        width: 250px;
        height: 250px;
    }
    
    .floating-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 992px) {
    .platform-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .platform-visual {
        height: 400px;
        order: -1;
    }
    
    .platform-info {
        text-align: center;
    }
    
    .platform-feature {
        text-align: left;
    }
    
    .main-visual {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .platform {
        padding: 80px 0;
    }
    
    .platform-info h3 {
        font-size: 1.8rem;
    }
    
    .platform-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .platform-visual {
        height: 350px;
    }
    
    .main-visual {
        width: 220px;
        height: 220px;
    }
    
    .floating-icon {
        width: 60px;
        height: 60px;
    }
    
    .floating-icon.icon-1 {
        top: 30px;
        left: 10px;
    }
    
    .floating-icon.icon-2 {
        top: 50px;
        right: 15px;
    }
    
    .floating-icon.icon-3 {
        bottom: 40px;
        left: 20px;
    }
}

@media (max-width: 576px) {
    .platform {
        padding: 60px 0;
    }
    
    .platform-info h3 {
        font-size: 1.6rem;
    }
    
    .platform-features {
        margin: 30px 0;
    }
    
    .platform-visual {
        height: 300px;
    }
    
    .main-visual {
        width: 200px;
        height: 200px;
        padding: 15px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        padding: 10px;
    }
}

/* Efectos de hover mejorados */
.platform-feature:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.platform-feature:hover .feature-text h4 {
    color: var(--primary-color);
}

/* Transiciones suaves */
.platform-feature,
.feature-icon,
.floating-icon {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}