/* ===== CSS ESPECÍFICO PARA PÁGINA SERVICIOS ===== */
/* Solo estilos nuevos - No duplica los del CSS principal */

/* Hero Section Servicios */
.servicios-hero {
    position: relative;
    height: 65vh;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(255,107,53,0.8)), 
                url('../fotos/10.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-overlay {
    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 20"><circle cx="10" cy="10" r="1" fill="rgba(255,107,53,0.2)"/><circle cx="30" cy="5" r="1" fill="rgba(255,107,53,0.1)"/><circle cx="70" cy="15" r="1" fill="rgba(255,107,53,0.15)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.servicios-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.servicios-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.servicios-hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.2rem;
}

/* Propuesta de Valor Section */
.propuesta-valor {
    padding: 6rem 0;
    background: #f8fafc;
}

.propuesta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.propuesta-text {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.propuesta-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #ffa500);
    border-radius: 20px 20px 0 0;
}

.propuesta-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.valor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.valor-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.valor-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.valor-item:hover {
    background: #f1f5f9;
    border-color: rgba(255,107,53,0.2);
    transform: translateX(5px);
}

.valor-icon {
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #ff6b35, #ffa500);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.valor-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
}

/* Dashboard Preview */
.propuesta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
}

.dashboard-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.dashboard-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
}

.status-dot.active {
    animation: pulse 2s infinite;
}

.dashboard-metrics {
    display: grid;
    gap: 1rem;
}

.metric-card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.metric-card:hover {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    transform: translateY(-2px);
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Servicios Principales Section */
.servicios-principales {
    padding: 6rem 0;
    background: white;
}

.servicio-destacado {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.servicio-destacado:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.servicio-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.servicio-destacado.reverse .servicio-content {
    grid-template-columns: 1fr 2fr;
}

.servicio-destacado.reverse .servicio-info {
    order: 2;
}

.servicio-destacado.reverse .servicio-image {
    order: 1;
}

.servicio-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.servicio-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.servicio-badge {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.servicio-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 2rem;
}

.servicio-benefits {
    display: grid;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    background: #f1f5f9;
    border-color: rgba(255,107,53,0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #ffa500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255,107,53,0.2);
}

.benefit-text strong {
    display: block;
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.benefit-text p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.servicio-image {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.servicio-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.servicio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.servicio-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.overlay-badge {
    font-size: 2rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.overlay-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* Propuesta Valor Box */
.propuesta-valor-box {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
    margin-top: 2rem;
}

.propuesta-valor-box h4 {
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.valor-lista {
    display: grid;
    gap: 1rem;
}

.valor-punto {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.punto-icon {
    color: #ff6b35;
    font-weight: 800;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

/* Servicios Visuales Section */
.servicios-visuales {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    position: relative;
    overflow: hidden;
}

.servicios-visuales::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 20"><circle cx="10" cy="10" r="1" fill="rgba(255,107,53,0.1)"/><circle cx="30" cy="5" r="1" fill="rgba(255,107,53,0.1)"/><circle cx="70" cy="15" r="1" fill="rgba(255,107,53,0.1)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.servicios-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-visual-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-visual-card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,107,53,0.9), rgba(229,90,43,0.9));
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-visual-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.card-overlay p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Otros Servicios Section */
.otros-servicios {
    padding: 6rem 0;
    background: #f8fafc;
}

.otros-servicios-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.servicio-adicional {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.servicio-adicional:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255,107,53,0.15);
    border-color: rgba(255,107,53,0.2);
}

.servicio-adicional .servicio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ffa500);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 20px rgba(255,107,53,0.3);
}

.servicio-adicional h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 700;
}

.servicio-adicional p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.05rem;
}

.cta-servicios {
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 3rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    color: white;
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin: 0;
}

.btn-contacto {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(255,107,53,0.3);
}

.btn-contacto:hover {
    background: linear-gradient(135deg, #e55a2b, #cc4d24);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,107,53,0.4);
}

/* Beneficios Generales Section */
.beneficios-generales {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    color: white;
    position: relative;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.beneficio-card {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.beneficio-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.beneficio-card .beneficio-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #ffa500);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 20px rgba(255,107,53,0.3);
}

.beneficio-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.beneficio-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA Final Section */
.cta-final-servicios {
    padding: 6rem 0;
    background: white;
    text-align: center;
}

.cta-final-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-final-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff6b35, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-final-content p {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta.primary {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    box-shadow: 0 8px 20px rgba(255,107,53,0.3);
}

.btn-cta.primary:hover {
    background: linear-gradient(135deg, #e55a2b, #cc4d24);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,107,53,0.4);
}

.btn-cta.secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-cta.secondary:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-3px);
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .propuesta-content,
    .servicio-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .servicio-destacado.reverse .servicio-info,
    .servicio-destacado.reverse .servicio-image {
        order: initial;
    }
    
    .valor-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .servicios-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .otros-servicios-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-servicios {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .servicios-hero {
        height: 55vh;
        margin-top: 70px;
    }
    
    .servicios-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature-badge {
        justify-content: center;
        width: 100%;
        max-width: 250px;
    }
    
    .propuesta-text,
    .benefit-item {
        padding: 2rem;
    }
    
    .servicio-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .servicio-header h3 {
        font-size: 2rem;
    }
    
    .servicio-image {
        height: 250px;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-final-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}