/* CONTENEDOR DE LA SECCIÓN COMPLETA */
.services-wrapper-section {
    padding: 60px 0;
}

.quick-access-block {
    margin-bottom: 60px;
}

/* 1. ESTILOS ACCESO RÁPIDO */
.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.quick-card {
    background-color: var(--bg-card, #0d1b2a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.quick-card:hover {
    border-color: var(--primary-color, #0066cc);
    background-color: rgba(0, 102, 204, 0.05);
    transform: translateY(-2px);
}

.quick-icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(204, 204, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-icon-box svg {
    stroke: var(--accent-color, #cccc00) !important;
    width: 20px;
    height: 20px;
}

.quick-card-content h3 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.quick-card-content p {
    color: var(--text-muted, #94a3b8);
    font-size: 0.8rem;
    line-height: 1.3;
    margin: 0;
}

/* 2. ESTILOS TARJETAS DE SERVICIOS DETALLADOS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.service-card {
    background-color: var(--bg-card, #0d1b2a);
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: 14px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 230px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--primary-color, #0066cc);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.25);
    transform: translateY(-3px);
}

.watermark-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    user-select: none;
    pointer-events: none;
}

.card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.icon-box {
    width: 38px;
    height: 38px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box svg {
    stroke: var(--accent-color, #cccc00) !important;
    width: 20px;
    height: 20px;
}

.card-number {
    color: var(--accent-color, #cccc00);
    font-weight: 700;
    font-size: 0.85rem;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
    line-height: 1.2;
}

.service-card p {
    color: var(--text-muted, #94a3b8);
    font-size: 0.82rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.card-action {
    color: var(--accent-color, #cccc00);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.card-action:hover {
    color: #ffffff;
}

/* GRID EN 2 FILAS DE 3 COLUMNAS */
.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Fuerza 3 columnas iguales */
    gap: 16px;
    margin-top: 24px;
}

/* BOTONES RECTANGULARES MÁS ESTIRADOS */
.quick-card {
    background-color: var(--bg-card, #0d1b2a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;           /* Bordes suavizados pero rectangulares */
    padding: 16px 20px;          /* Proporción rectangular estirada */
    min-height: 80px;            /* Altura fija para uniformidad */
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.quick-card:hover {
    border-color: var(--primary-color, #0066cc);
    background-color: rgba(0, 102, 204, 0.08);
    transform: translateY(-2px);
}

/* RESPONSIVE PARA PANTALLAS PEQUEÑAS */
@media (max-width: 992px) {
    .quick-access-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columnas en tablets */
    }
}

@media (max-width: 576px) {
    .quick-access-grid {
        grid-template-columns: 1fr;            /* 1 columna en móviles */
    }
}

/* ESTRUCTURA GENERAL DE LA SECCIÓN */
.process-solutions-section {
    padding: 60px 0;
}

.process-block {
    margin-bottom: 70px;
}

/* 1. TIMELINE DE PROCESO (5 PASOS) */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
    margin-top: 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
}

.step-badge {
    width: 32px;
    height: 32px;
    background-color: var(--bg-card, #0d1b2a);
    border: 2px solid var(--accent-color, #cccc00);
    color: var(--accent-color, #cccc00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.step-card {
    background-color: var(--bg-card, #0d1b2a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 16px;
    height: calc(100% - 52px);
    transition: border-color 0.25s ease;
}

.step-card:hover {
    border-color: var(--primary-color, #0066cc);
}

.step-card h3 {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.25;
    letter-spacing: 0.5px;
}

.step-card p {
    color: var(--text-muted, #94a3b8);
    font-size: 0.78rem;
    line-height: 1.4;
    margin: 0;
}

/* 2. TARJETAS DE SOLUCIONES (3 COLUMNAS CON IMAGEN) */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.solution-card {
    background-color: var(--bg-card, #0d1b2a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.solution-card:hover {
    border-color: var(--primary-color, #0066cc);
    transform: translateY(-3px);
}

.solution-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    background-color: #111827;
}

.solution-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-label {
    position: absolute;
    top: 12px;
    left: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.solution-content {
    padding: 20px;
}

.solution-content h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.solution-content p {
    color: var(--text-muted, #94a3b8);
    font-size: 0.82rem;
    line-height: 1.4;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-timeline::before {
        display: none;
    }
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-timeline,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}

/* SECCIÓN DE CONTACTO */
.contact-section {
    padding: 60px 0;
}

/* 1. TARJETA DE CONTACTO RÁPIDO */
.contact-box {
    background-color: var(--bg-card, #0d1b2a);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
}

.contact-box-text h2 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 900;
    margin: 4px 0 8px 0;
    letter-spacing: -0.5px;
}

.contact-box-text p {
    color: var(--text-muted, #94a3b8);
    font-size: 0.9rem;
    margin: 0;
}

.contact-buttons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.contact-btn:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.contact-btn.btn-call {
    background-color: var(--accent-color, #00d26a);
    border-color: var(--accent-color, #00d26a);
    color: #000000;
}

.contact-btn.btn-call:hover {
    filter: brightness(1.1);
}

.section-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 50px 0;
}

/* 2. FORMULARIO DE PRESUPUESTO */
.budget-block {
    margin-top: 20px;
}

.budget-form {
    margin-top: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #09111e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    color: #ffffff;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color, #0066cc);
}

.form-group input[type="file"] {
    padding: 8px 10px;
    font-size: 0.8rem;
    color: var(--text-muted, #94a3b8);
}

.form-help {
    color: var(--text-muted, #64748b);
    font-size: 0.72rem;
}

.submit-btn {
    width: 100%;
    height: 48px;
    margin-top: 24px;
    background-color: var(--accent-color, #00d26a);
    border: none;
    border-radius: 24px;
    color: #000000;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: filter 0.25s ease;
}

.submit-btn:hover {
    filter: brightness(1.1);
}

/* RESPONSIVE */
@media (max-width: 850px) {
    .contact-box {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* ESTRUCTURA Y ALINEACIÓN DE DOS COLUMNAS */
.hero-section {
    background-color: #0b0f19;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 420px; /* Divide la pantalla en 2 columnas */
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* TIPOGRAFÍA E IDENTIDAD */
.badge-eyebrow {
    color: #cccc00;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero-main-title {
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 16px 0;
}

.hero-subtitle {
    color: #cccc00;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.hero-description {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 28px 0;
    max-width: 580px;
}

/* BOTONES */
.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    background-color: #004d99;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #003b75;
}

/* BADGES DE CONFIANZA INFERIORES */
.hero-trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
}

.trust-item svg {
    color: #cccc00;
}

/* TARJETA JAIRO ÁLVAREZ (COLUMNA DERECHA) */
.author-card {
    background-color: #0d1b2a;
    border: 1.5px solid #cccc00;
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.author-logo img {
    max-width: 200px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.author-name {
    color: #cccc00;
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0 0 6px 0;
}

.author-badge {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
}

.author-subbadge {
    color: #cccc00;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 4px;
}

.author-guarantee {
    color: #94a3b8;
    font-size: 0.88rem;
    margin: 20px 0 0 0;
}

.card-line {
    width: 50px;
    height: 2px;
    background-color: #0066cc;
    margin: 16px auto;
}

.author-footer {
    color: #94a3b8;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-right {
        max-width: 450px;
        width: 100%;
        margin: 0 auto;
    }
}

/* ==========================================
   HERO BRUTALISTA CON PALETA CORPORATIVA
   ========================================== */

/* HERO BRUTALISTA CORREGIDO Y ALINEADO */
.hero-brand {
    background-color: var(--bg-dark, #0b0f19);
    background-image:linear-gradient(rgba(11, 15, 25, 0.85), rgba(11, 15, 25, 0.85)), 
        url('../images/imagen1.jpg');
    
        background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding-top: 220px !important; /* Espacio extra para que no lo tape la cabecera */
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-brand-container {
    max-width: 1200px; /* Ancho máximo alineado con el resto de tus secciones */
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ETIQUETA SUPERIOR */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.yellow-line {
    width: 32px;
    height: 3px;
    background-color: #cccc00; /* Amarillo / Verde Lima */
    display: inline-block;
}

.eyebrow-text {
    color: #cccc00;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* TÍTULO GIGANTE */
.hero-giant-title {
    color: #ffffff;
    font-size: clamp(3.2rem, 9vw, 6.5rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -1.5px;
    margin: 0 0 28px 0;
    text-transform: uppercase;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* SUBTÍTULO */
.hero-subtext {
    color: #94a3b8;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 0 36px 0;
    max-width: 520px;
    line-height: 1.4;
}

/* BOTONES CON EL AZUL DE LA WEB */
.hero-actions-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn-blue {
    background-color: #0066cc; /* Azul principal de la marca */
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-blue:hover {
    background-color: #0052a3;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: #0d1b2a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.btn-outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

/* PÍLDORAS / BADGES DE ABAJO */
.hero-pills-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 220px));
    gap: 10px;
    width: 100%;
}

.pill-item {
    background-color: #0d1b2a; /* Fondo azul de las tarjetas */
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 10px 18px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-mark {
    color: #cccc00; /* Ticks amarillos */
    font-size: 0.9rem;
    font-weight: 900;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .hero-brand {
        padding: 50px 16px;
    }
    .hero-actions-grid {
        flex-direction: column;
        width: 100%;
    }
    .btn-blue, .btn-outline {
        width: 100%;
        text-align: center;
    }
    .hero-pills-grid {
        grid-template-columns: 1fr;
    }
}

/* CLASE PARA TEXTO AMARILLO DESTACADO */
.text-yellow {
    color: #cccc00;
}

/* ALINEACIÓN TOTAL A LA IZQUIERDA */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important; /* Fuerza todo el contenedor a la izquierda */
    text-align: left !important;
    width: 100%;
    margin-bottom: 32px;
}

/* ANTETÍTULO AMARILLO Y LÍNEA A LA DERECHA */
.section-eyebrow,
.eyebrow-text,
.yellow-title,
.sub-header-yellow {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px;
    color: #cccc00 !important;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-eyebrow::after,
.eyebrow-text::after,
.yellow-title::after,
.sub-header-yellow::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 3px;
    background-color: #cccc00;
    border-radius: 2px;
}

/* TÍTULOS BLANCOS ALINEADOS A LA IZQUIERDA */
.section-title,
.section-header h2,
h2 {
    text-align: left !important;
    color: #ffffff;
    margin: 0 !important;
    width: 100%;
}

/* ALINEACIÓN A LA IZQUIERDA PARA CABECERAS Y CONTENEDORES */
section,
.container,
.section-header,
.hero-container {
    text-align: left !important;
    align-items: flex-start !important;
}

/* CABECERAS DE CADA SECCIÓN */
.section-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    width: 100% !important;
    margin-bottom: 32px !important;
}

/* ANTETÍTULOS AMARILLOS + LÍNEA A LA DERECHA */
.section-eyebrow,
.eyebrow-text,
.yellow-title,
.sub-header-yellow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    color: #cccc00 !important;
    font-weight: 900 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.section-eyebrow::after,
.eyebrow-text::after,
.yellow-title::after,
.sub-header-yellow::after {
    content: "" !important;
    display: inline-block !important;
    width: 40px !important;
    height: 3px !important;
    background-color: #cccc00 !important;
    border-radius: 2px !important;
}

/* TÍTULOS BLANCOS Y PARÁFRASIS */
.section-title,
.section-header h2,
.section-header p,
h2 {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* ALINEACIÓN A LA IZQUIERDA PARA TÍTULOS Y CABECERAS DE SECCIÓN */
.section-heading,
.projects-heading-main,
.projects-heading,
.contact-box-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* Forzar que el texto y las líneas amarillas no se centren */
.section-eyebrow,
.section-heading h2,
.section-heading p {
    text-align: left !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
}/* ANTETÍTULO AMARILLO */
.trust-content .section-eyebrow {
    font-size: 40 !important; /* Cambia este valor para ajustar el tamaño */
    letter-spacing: 1px;        /* Espaciado entre letras si deseas modificarlo */
}

/* TÍTULO PRINCIPAL EN BLANCO */
.trust-content h2 {
    font-size: 80px !important; /* Cambia este valor (ej. 28px para menor, 40px para mayor) */
    line-height: 1.2;           /* Ajusta el interlineado para que no se solapen las líneas */
}

/* TEXTO DESCRIPTIVO */
.trust-content p {
    font-size: 16px !important; /* Cambia este valor según tu preferencia */
    line-height: 1.6;           /* Mantiene una buena lectura del párrafo */
}