/* ========================================
   Seguridad - Servicios - Estilos Específicos
   ======================================== */

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, #1e3a52 0%, #2c5f8d 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}

.service-hero h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-hero p {
    font-size: 1.2em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Service Content Section */
.service-content {
    padding: 60px 0;
}

.back-link {
    display: inline-block;
    margin-bottom: 40px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #0052a3;
}

.section-title {
    font-size: 2.2em;
    color: #1e3a52;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

/* ========================================
   Grids and Layouts
   ======================================== */

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.servicio-card {
    background: linear-gradient(135deg, #1e3a52 0%, #2c5aa0 100%);
    padding: 40px;
    border-radius: 16px;
    color: white;
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.servicio-icon-box {
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servicio-icon-box svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.servicio-card h3 {
    font-size: 1em;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.servicio-card p {
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Alcances Section */
.alcances-section {
    padding: 80px 0;
}

.alcances-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.alcance-card {
    background: linear-gradient(135deg, #1e3a52 0%, #2c5aa0 100%);
    padding: 40px;
    border-radius: 12px;
    color: white;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alcance-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.alcance-icon-box {
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alcance-icon-box svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.alcance-card h3 {
    font-size: 1em;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.alcance-card p {
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.vigencia-box {
    background: linear-gradient(135deg, #001a4d 0%, #003d99 100%);
    padding: 40px;
    border-radius: 12px;
    color: white;
    text-align: center;
}

.vigencia-icon-box {
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vigencia-icon-box svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.vigencia-box h3 {
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.vigencia-box p {
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Costos Section */
.costos-section {
    padding: 80px 0;
    background: linear-gradient(to right, #f8f9fa 0%, #ffffff 100%);
}

.costos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.costo-card {
    text-align: center;
    padding: 40px;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, #1e3a52 0%, #2c5aa0 100%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.costo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.costo-card-highlight {
    background: linear-gradient(135deg, #001a4d 0%, #003d99 100%);
}

.costo-icon-box {
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.costo-icon-box svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.costo-card h3 {
    font-size: 1em;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.costo-card p {
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Entregables Section */
.entregables-section {
    padding: 80px 0;
}

.entregables-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.entregable-card {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #1e3a52 0%, #2c5aa0 100%);
    border-radius: 16px;
    color: white;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.entregable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.entregable-icon-box {
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.entregable-icon-box svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.entregable-card h3 {
    font-size: 1em;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.entregable-card p {
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.cta-section .section-title {
    color: #1e3a52;
    margin-bottom: 30px;
}

.cta-section p {
    font-size: 1.05em;
    color: #666;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #1e3a52 0%, #2c5aa0 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(30, 58, 82, 0.3);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: #1e3a52;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-logo {
    text-align: right;
}

.footer-logo p {
    margin-top: 15px;
    font-size: 0.95em;
}

.footer-contacto {
    text-align: left;
}

.footer-contacto h4 {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.footer-contacto p {
    margin: 8px 0;
    font-size: 0.95em;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .servicios-grid,
    .alcances-grid,
    .costos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .entregables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 1.8em;
    }

    .section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }

    .servicios-grid,
    .alcances-grid,
    .costos-grid,
    .entregables-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .servicio-card,
    .entregable-card {
        padding: 30px;
        min-height: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-logo,
    .footer-contacto {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 60px 0 40px;
    }

    .service-hero h1 {
        font-size: 1.4em;
    }

    .service-hero p {
        font-size: 1em;
    }

    .service-content {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.4em;
        margin-bottom: 30px;
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 0.95em;
    }
}
