/* ==========================================
   SECCIÓN PROCESO DE TRABAJO
   ========================================== */
#proceso-trabajo {
    width: 100%;
    padding: 80px 20px;
    background-color: #0d0d11;
    /* Color oscuro alineado con el tono dark/tech */
    display: flex;
    justify-content: center;
}

.proceso-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proceso-subtitle {
    color: #a8a8b3;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 50px;
    font-family: 'Roboto', sans-serif;
}

.pasos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    width: 100%;
}

.paso-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px 25px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.paso-card:hover {
    transform: translateY(-6px);
    border-color: #ff9000;
    /* Utiliza el acento dorado/naranja de tu marca */
}

.paso-numero {
    font-family: 'Oswald', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff9000;
    margin-bottom: 15px;
    line-height: 1;
}

.paso-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.paso-descripcion {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #a8a8b3;
    line-height: 1.5;
}

/* Ajustes Responsive para Celulares */
@media (max-width: 768px) {
    #proceso-trabajo {
        padding: 50px 15px;
    }

    .pasos-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   SECCIÓN VENTAJAS COMPETITIVAS
   ========================================== */
#ventajas {
    width: 100%;
    padding: 80px 20px;
    background-color: #08080a;
    display: flex;
    justify-content: center;
}

.ventajas-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ventajas-subtitle {
    color: #a8a8b3;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 50px;
    font-family: 'Roboto', sans-serif;
}

.ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    width: 100%;
}

.ventaja-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 30px 25px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ventaja-card:hover {
    transform: translateY(-6px);
    border-color: #ff9000;
    box-shadow: 0 10px 25px rgba(255, 144, 0, 0.1);
}

.ventaja-icono {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.ventaja-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.ventaja-descripcion {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #a8a8b3;
    line-height: 1.5;
}

@media (max-width: 768px) {
    #ventajas {
        padding: 50px 15px;
    }

    .ventajas-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================
   SECCIÓN PREGUNTAS FRECUENTES (FAQ) & CTA
   ========================================== */
   #faq-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #0d0d11;
    display: flex;
    justify-content: center;
}

.faq-container {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-subtitle {
    color: #a8a8b3;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 40px;
    font-family: 'Roboto', sans-serif;
}

.faq-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 18px 22px;
    transition: border-color 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.faq-item[open] {
    border-color: #ff9000;
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    outline: none;
    list-style: none; /* Oculta la flecha por defecto de HTML */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: #ff9000;
    font-weight: bold;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    margin-top: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #a8a8b3;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

/* BANNER CTA FINAL */
.cta-banner {
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 144, 0, 0.15) 0%, rgba(13, 13, 17, 0.8) 100%);
    border: 1px solid #ff9000;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.cta-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #a8a8b3;
    margin-bottom: 25px;
}

.cta-button {
    background-color: #ff9000;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    background-color: #e07f00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 144, 0, 0.4);
}

@media (max-width: 768px) {
    #faq-section {
        padding: 50px 15px;
    }
    .cta-banner {
        padding: 30px 15px;
    }
}

/* ==========================================
   FOOTER 
   ========================================== */
   #footer-box {
    width: 100%;
    background-color: #08080a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #a8a8b3;
    font-family: 'Roboto', sans-serif;
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

#logo-footer {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #8f8f9d;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: #ff9000;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-links a {
    color: #a8a8b3;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: #ff9000;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* BARRA INFERIOR */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #050507;
    padding: 20px 0;
    font-size: 0.85rem;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal a {
    color: #8f8f9d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

.separator {
    color: #ff9000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   SECCIÓN SERVICIOS OFRECIDOS
   ========================================== */
   #servicios {
    width: 100%;
    padding: 80px 20px;
    background-color: #08080a;
    display: flex;
    justify-content: center;
}

.servicios-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servicios-subtitle {
    color: #a8a8b3;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 50px;
    font-family: 'Roboto', sans-serif;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.servicio-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 35px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card.destacado {
    border-color: #ff9000;
    background: rgba(255, 144, 0, 0.03);
}

.badge-destacado {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #ff9000;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
}

.servicio-card:hover {
    transform: translateY(-6px);
    border-color: #ff9000;
    box-shadow: 0 10px 25px rgba(255, 144, 0, 0.1);
}

.servicio-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.servicio-icono {
    font-size: 2.2rem;
    color: #ff9000; /* Toma el color exacto de tu tema */
}

.servicio-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.servicio-descripcion {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #a8a8b3;
    line-height: 1.6;
    margin-bottom: 20px;
}

.servicio-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto; /* Empuja las características hacia abajo */
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 15px;
}

.servicio-features li {
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    color: #d1d1d6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}


.servicio-features li::before {
    content: "\2713"; /* Código Unicode para el Checkmark seguro */
    position: absolute;
    left: 0;
    color: #ff9000;
    font-weight: bold;
}
}

@media (max-width: 768px) {
    #servicios {
        padding: 50px 15px;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
    }
}


.dynamic-module {
    width: 100%;
    display: block;
    clear: both; /* Evita colisiones si hay elementos flotantes */
}


.dynamic-module > section {
    width: 100%;
    box-sizing: border-box;
}

/* Asegura que los iconos de Google no rompan el texto del HTML */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}
