/* portfolio.css - Estilos únicos para todas las páginas de portafolio */
.project-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.project-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    border-bottom: 2px solid #3498db;
}

.project-hero h1 {
    color: #2c3e50;
    font-size: 2.3rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.project-subtitle {
    font-size: 1.3rem;
    color: #34495e;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.project-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.description-column h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.description-column h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.description-column p {
    line-height: 1.7;
    color: #495057;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.client-testimonial, .app-features {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    margin-top: 30px;
}

.benefits-list, .features-list {
    padding-left: 20px;
}

.benefits-list li, .features-list li {
    line-height: 1.7;
    color: #495057;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.benefits-list li strong, .features-list li strong {
    color: #2c3e50;
}

.technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.tech-tag {
    background: #3498db;
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Integration Flow */
.integration-flow {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 12px;
    margin: 60px 0;
    text-align: center;
}

.integration-flow h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.flow-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.flow-step {
    background: rgba(255,255,255,0.1);
    padding: 25px 20px;
    border-radius: 12px;
    min-width: 180px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.flow-arrow {
    font-size: 2rem;
    color: #f1c40f;
    font-weight: bold;
}

/* User Flow */
.user-flow {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 12px;
    margin: 60px 0;
}

.user-flow h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.flow-step-user {
    background: rgba(255,255,255,0.1);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f1c40f;
    color: #2c3e50;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Tech Specs */
.tech-specs {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 12px;
    margin: 60px 0;
}

.tech-specs h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.spec-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.spec-item h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.spec-item ul {
    padding-left: 20px;
}

.spec-item li {
    line-height: 1.7;
    color: #495057;
    margin-bottom: 10px;
}

/* Call to Action */
.project-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    margin: 60px 0;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    
}

.cta-content p {
    
    margin-bottom: 1%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #3498db;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
}

.faq-section h3 {
    color: #2c3e50;
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-align: center;
}

.faq-section h4 {
    color: #3498db;
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
}

.faq-section p {
    line-height: 1.6;
    color: #495057;
}

/* Responsive */
@media (max-width: 768px) {
    .project-description {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-hero h1 {
        font-size: 1.8rem;
    }
    
    .project-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-section, .project-cta, .integration-flow, .user-flow, .tech-specs {
        padding: 30px 20px;
    }
    
    .flow-diagram, .flow-steps, .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-step, .flow-step-user {
        padding: 25px 20px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    .cta-content h3{
        font-size:1.2rem;
    }
}

