/* Estilos específicos para la página de apps */

.apps-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 161, 155, 0.6) 100%), url('/api/placeholder/1920/800');
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.apps-hero .hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.apps-hero h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--blanco);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.apps-hero p {
    font-size: 20px;
    color: var(--plata);
    margin-bottom: 30px;
    line-height: 1.6;
}

.apps-content {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Descripción del servicio */
.apps-description {
    margin-bottom: 60px;
    line-height: 1.8;
}

.apps-description p {
    color: var(--plata);
    margin-bottom: 25px;
    font-size: 18px;
}

.apps-description .highlight-text {
    font-size: 22px;
    color: var(--blanco);
    border-left: 4px solid var(--verde);
    padding-left: 20px;
    margin: 40px 0;
}

/* Nuestro Enfoque */
.apps-approach {
    margin-bottom: 80px;
}

.approach-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text p {
    color: var(--plata);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: var(--plata);
    font-size: 16px;
    line-height: 1.5;
}

.approach-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--verde);
    border-radius: 50%;
}

.approach-image {
    flex: 1;
    max-width: 500px;
}

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Prototipo F-NFT */
.f-nft-prototype {
    margin-bottom: 80px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 40px;
}

.prototype-container {
    margin-bottom: 40px;
}

.prototype-text h3 {
    color: var(--verde);
    font-size: 24px;
    margin: 30px 0 15px;
    font-weight: 600;
}

.prototype-text p {
    color: var(--plata);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.benefits-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--plata);
    font-size: 16px;
    line-height: 1.5;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--verde);
    font-weight: bold;
}

.prototype-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 2rem auto;
    max-width: 800px; /* Ajusta según necesites */
}

.video-container {
    width: 60%;
    max-width: 100%;
    margin: 0 auto;
}

video {
    width: 100%;
    border-radius: 12px; /* Esquinas redondeadas */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra ligera opcional */
    background-color: #000; /* Fondo negro mientras carga */
}

/* Personalización de los controles (algunos navegadores permiten esto) */
video::-webkit-media-controls {
    border-radius: 12px;
    overflow: hidden;
}

h3 {
    margin-bottom: 1rem;
}

.prototype-cta {
    text-align: center;
    padding: 30px;
    background-color: rgba(0, 161, 155, 0.1);
    border-radius: 8px;
    margin-top: 40px;
}

.prototype-cta h3 {
    color: var(--blanco);
    font-size: 24px;
    margin-bottom: 15px;
}

.prototype-cta p {
    color: var(--plata);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Otros Proyectos */
.other-projects {
    margin-bottom: 80px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.project-card img {
    width: 100%;
    height: auto;
    display: block;
}

.project-card h3 {
    color: var(--verde);
    font-size: 20px;
    margin: 20px 20px 10px;
    font-weight: 600;
}

.project-card p {
    color: var(--plata);
    font-size: 16px;
    line-height: 1.6;
    padding: 0 20px 20px;
}

/* CTA Section */
.cta {
    background-color: rgba(0, 161, 155, 0.1);
    padding: 80px 5%;
    text-align: center;
    position: relative;
    margin-top: 60px;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #01f5d0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--blanco);
}

.cta p {
    color: var(--plata);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .approach-container {
        flex-direction: column;
    }
    
    .approach-image {
        max-width: 100%;
        order: -1;
        margin-bottom: 30px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .apps-hero h1 {
        font-size: 40px;
    }
    
    .apps-hero p {
        font-size: 18px;
    }
    
    .apps-description p,
    .approach-text p,
    .prototype-text p {
        font-size: 16px;
    }
    
    .apps-description .highlight-text {
        font-size: 18px;
    }
    
    .f-nft-prototype {
        padding: 30px 20px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .apps-hero {
        height: 50vh;
    }
    
    .apps-hero h1 {
        font-size: 32px;
    }
    
    .apps-hero p {
        font-size: 16px;
    }
    
    .apps-content {
        padding: 60px 5%;
    }
    
    .prototype-text h3,
    .prototype-video h3,
    .prototype-cta h3 {
        font-size: 20px;
    }
    
    .benefits-list li,
    .approach-list li {
        font-size: 14px;
        padding-left: 25px;
    }
}