/* ===================================
   ESTILOS MEJORADOS PARA PÁGINA DE MODELOS DE CV
   =================================== */

/* Hero Section Mejorado */
.cv-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #0974af 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.cv-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cv-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23cv-grid)"/></svg>');
    opacity: 0.3;
}

.cv-hero-section .container {
    position: relative;
    z-index: 2;
}

.cv-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.cv-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Stats Cards para CV */
.cv-stats {
    margin-top: 3rem;
}

.cv-stat-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
}

.cv-stat-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.cv-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cv-stat-description {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Sección de Modelos de CV */
.cv-models-section {
    padding: 100px 0;
    background: #ffffff;
}

.cv-models-section .section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.cv-models-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.cv-models-section .subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Cards de Modelos de CV */
.cv-model-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.cv-model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.cv-model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.cv-model-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.cv-model-card:hover .cv-model-image {
    transform: scale(1.02);
}

.cv-model-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cv-model-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cv-model-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.cv-model-link {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cv-model-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.cv-model-link i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Sección de Servicio de Revisión */
.cv-service-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin-top: 60px;
}

.cv-service-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.cv-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2, #0974af);
}

.cv-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cv-service-icon i {
    font-size: 2.5rem;
    color: white;
}

.cv-service-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cv-service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.cv-service-features {
    margin: 2rem 0;
}

.cv-service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.cv-service-feature i {
    color: #667eea;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.cv-service-feature span {
    font-weight: 500;
    color: #2c3e50;
}

.cv-service-cta-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.cv-service-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

/* Beneficios de Revisión */
.cv-benefits-section {
    padding: 80px 0;
    background: #ffffff;
}

.cv-benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.cv-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.cv-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.cv-benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.cv-benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.cv-benefit-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cv-hero-title {
        font-size: 2.5rem;
    }
    
    .cv-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cv-models-section .section-title h2 {
        font-size: 2rem;
    }
    
    .cv-model-card {
        padding: 1.5rem;
    }
    
    .cv-service-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .cv-service-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .cv-hero-section {
        padding: 80px 0 60px;
    }
    
    .cv-hero-title {
        font-size: 2rem;
    }
    
    .cv-models-section,
    .cv-service-cta,
    .cv-benefits-section {
        padding: 60px 0;
    }
    
    .cv-model-card {
        padding: 1rem;
    }
    
    .cv-service-card {
        padding: 1.5rem;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cv-hero-section,
.cv-models-section,
.cv-service-cta,
.cv-benefits-section {
    animation: fadeInUp 0.8s ease-out;
}

/* Efectos adicionales */
.cv-model-card {
    position: relative;
    overflow: hidden;
}

.cv-model-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.cv-model-card:hover::after {
    left: 100%;
} 