* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    border-radius: 8px;
    object-fit: contain;
    background: transparent;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
}

/* Contenido principal */
.main-content {
    text-align: center;
    padding: 60px 20px;
}

.central-logo {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.central-logo img {
    border-radius: 15px;
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 10px 25px rgba(233, 30, 99, 0.2));
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Segundo subtítulo descriptivo */
.subtext {
    font-size: 0.95rem;
    color: #6b7280; /* gray-500 */
    max-width: 820px;
    margin: 0 auto 22px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.project-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(233, 30, 99, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.status-indicator {
    color: #e91e63;
    font-size: 12px;
    animation: pulse 2s infinite;
}

.status-text {
    font-size: 14px;
    color: #e91e63;
    font-weight: 500;
}

.description {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Grid de servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 1s both;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e91e63, #ad1457);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Información adicional */
.more-info {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.more-info p {
    color: #888;
    font-style: italic;
    font-size: 1rem;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .main-content {
        padding: 40px 10px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .central-logo img {
        width: 80px;
        height: 80px;
    }
    
    .logo {
        width: 30px;
        height: 30px;
    }
}