/* Social Feed Carousel - Estilos independientes */

/* Social Feed Section */
.social-feed {
    padding: 80px 0;
    background: #f8f9fa;
}

.social-feed h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.feed-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.feed-container {
    max-width: 95vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Hero Post Styles */
.hero-post {
    max-width: 95vw;
    margin: 0 auto;
    min-height: 80vh;
}

.hero-post-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    height: 100%;
}

.hero-post-left {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.hero-robot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-post-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.carousel-post .hero-post-left .carousel-container {
    height: 100%;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-post {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e1e8ed;
    width: 100%;
}

.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid #4a90e2;
}

.post-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.post-info span {
    color: #666;
    font-size: 0.9rem;
}

.post-type {
    margin-left: auto;
    font-size: 1.2rem;
}

.post-content {
    margin-bottom: 15px;
    line-height: 1.6;
}

.problem-highlight {
    background: #ffe6e6;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    border-left: 4px solid #ff4757;
    font-weight: 500;
}

.carousel-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 70vh;
    min-height: 500px;
    width: 100%;
    max-width: none;
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
}

.carousel-slide.active {
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(0,0,0,0.8);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.video-placeholder {
    position: relative;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    margin: 15px 0;
    width: 100%;
    height: 100%;
}

.hero-post-left .video-placeholder {
    margin: 0;
    height: 70vh;
    min-height: 500px;
}

.hero-post-left .video-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.video-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0.8;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.cta-highlight {
    background: #e8f5e8;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    border-left: 4px solid #2ed573;
    font-weight: 600;
    color: #2ed573;
}

.post-stats {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e1e8ed;
    font-size: 0.9rem;
    color: #666;
}

.post-comments {
    margin-top: 15px;
}

.comment {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #333;
}

.follow-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.social-button:hover {
    transform: translateY(-2px);
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.facebook {
    background: #1877f2;
    color: white;
}

.tiktok {
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .feed-container {
        padding: 0 10px;
    }
    
    .social-post {
        padding: 15px;
    }
    
    .follow-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .social-button {
        width: 250px;
        text-align: center;
    }
    
    .hero-post-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .hero-robot {
        max-width: 300px;
    }
}