/* ==========================================================================
   Sección Hero de la página Para Developers
   ========================================================================== */
.developers-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    background-image: url('../images/developers-hero-bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    overflow: hidden;
    z-index: 1;
}

/* Superposición oscura y degradado para contrastar texto y dejar visible los programadores a la derecha */
.developers-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, 
        rgba(6, 9, 19, 0.88) 0%, 
        rgba(6, 9, 19, 0.7) 45%, 
        rgba(6, 9, 19, 0.2) 70%, 
        rgba(6, 9, 19, 0.05) 100%
    );
    z-index: -1;
    pointer-events: none;
}

.developers-hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -150px;
    left: -200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.05) 50%, rgba(34, 197, 94, 0) 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

.developers-hero-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Columna Izquierda: Texto y Botones */
.developers-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.developers-hero-tag {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #22c55e;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.developers-hero-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(6, 9, 19, 0.5);
}

.developers-hero-title .title-green {
    color: #22c55e;
}

.developers-hero-description {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 300;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 580px;
    text-shadow: 0 2px 8px rgba(6, 9, 19, 0.5);
}

/* Acciones y Botones */
.developers-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.developers-hero-actions .btn {
    padding: 16px 28px;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
}

.developers-hero-actions .btn-call {
    background-color: #16a34a;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.35);
}

.developers-hero-actions .btn-call:hover {
    background-color: #22c55e;
    box-shadow: 0 6px 24px rgba(22, 163, 74, 0.45);
    transform: translateY(-2px);
}

.developers-hero-actions .btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.developers-hero-actions .btn-outline:hover {
    border-color: #22c55e;
    color: #22c55e;
    background-color: rgba(34, 197, 94, 0.05);
    transform: translateY(-2px);
}

.developers-hero-actions .btn-arrow {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.developers-hero-actions .btn:hover .btn-arrow {
    transform: translateX(4px);
}

.developers-hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 400px;
    width: 100%;
}

.constellation-bg {
    position: absolute;
    width: 320px;
    height: 320px;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
    animation: slowSpin 40s linear infinite;
}

@keyframes slowSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.floating-benefits-card {
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: floatCard 6s ease-in-out infinite alternate;
}

@keyframes floatCard {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-12px) rotate(0.5deg); }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-icon-box {
    width: 38px;
    height: 38px;
    background-color: rgba(34, 197, 94, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.benefit-icon-box svg {
    width: 18px;
    height: 18px;
    stroke: #22c55e;
    stroke-width: 2.2px;
}

.benefit-text {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.developers-wave-bottom {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
    pointer-events: none;
}

.developers-wave-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsividad Hero */
@media (max-width: 1100px) {
    .developers-hero {
        padding: 140px 0 80px;
    }
    
    .developers-hero-container {
        gap: 40px;
        padding: 0 30px;
    }
    
    .developers-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 900px) {
    .developers-hero {
        height: auto;
        padding: 120px 0 80px;
    }

    .developers-hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .developers-hero-content {
        align-items: center;
    }

    .developers-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .developers-hero-actions {
        justify-content: center;
    }

    .developers-hero-visual {
        min-height: 250px;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .developers-hero-overlay {
        background: linear-gradient(180deg, 
            rgba(6, 9, 19, 0.85) 0%, 
            rgba(6, 9, 19, 0.6) 60%, 
            rgba(6, 9, 19, 0.2) 100%
        );
    }
    
    .floating-benefits-card {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 580px) {
    .developers-hero {
        padding: 100px 0 60px;
    }

    .developers-hero-container {
        padding: 0 20px;
    }

    .developers-hero-title {
        font-size: 2.25rem;
    }

    .developers-hero-description {
        font-size: 1.05rem;
    }

    .developers-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .developers-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .developers-wave-bottom {
        height: 60px;
    }
}

/* ==========================================================================
   Sección ¿Por qué CapDev? (Para Desarrolladores)
   ========================================================================== */
.why-capdev-section-detail {
    background-color: #ffffff;
    color: #0e1225;
    padding: 100px 0 60px 0;
    width: 100%;
}

.why-capdev-detail-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: stretch;
}

/* Columna Izquierda: Imágenes apiladas */
.why-capdev-visuals {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.visual-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.visual-img-wrapper:hover .why-detail-img {
    transform: scale(1.03);
}

.img-floating-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(6, 9, 19, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Columna Derecha: Contenido y Acordeón */
.why-capdev-detail-content {
    display: flex;
    flex-direction: column;
}

.why-detail-tag {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #16a34a;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.why-detail-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #0e1225;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.why-detail-intro {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

.highlight-green {
    color: #16a34a;
    font-weight: 700;
}

/* Tarjeta Fija People-First */
.fixed-people-first-card {
    background-color: #f4f9f4;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid rgba(22, 163, 74, 0.1);
}

.people-first-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #16a34a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.people-first-icon-box svg {
    width: 26px;
    height: 26px;
}

.people-first-info {
    display: flex;
    flex-direction: column;
}

.people-first-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #16a34a;
    margin: 0 0 8px 0;
}

.people-first-desc {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Lista de Beneficios (Acordeón) */
.why-detail-benefits-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.benefit-detail-item {
    border-bottom: 1px solid #f1f5f9;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.benefit-detail-item.active {
    background-color: #f4f9f4;
    border-radius: 12px;
    border-bottom: 1px solid transparent;
    padding: 20px;
    margin: 6px 0;
}

.benefit-detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.benefit-detail-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(22, 163, 74, 0.25);
    color: #16a34a;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.benefit-detail-item.active .benefit-detail-icon-box {
    background-color: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
}

.benefit-detail-icon-box svg {
    width: 22px;
    height: 22px;
}

.benefit-detail-item-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #334155;
    margin: 0;
    transition: color 0.3s ease;
}

.benefit-detail-item.active .benefit-detail-item-title {
    color: #16a34a;
}

.benefit-detail-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-detail-item.active .benefit-detail-body {
    max-height: 120px;
}

.benefit-detail-item-desc {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 12px 0 0 61px;
}

/* Banner Destacado (Remote-First) */
.why-detail-banner {
    background-color: #f4f9f4;
    border: 1px solid rgba(22, 163, 74, 0.15);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-icon-box {
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-icon-box svg {
    width: 32px;
    height: 32px;
}

.banner-divider {
    width: 1.5px;
    height: 40px;
    background-color: rgba(22, 163, 74, 0.2);
    flex-shrink: 0;
}

.banner-info {
    display: flex;
    flex-direction: column;
}

.banner-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: #16a34a;
    letter-spacing: 0.1em;
    margin: 0 0 4px 0;
}

.banner-text {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #475569;
    margin: 0;
    line-height: 1.4;
}

/* Responsividad Sección ¿Por qué CapDev? */
@media (max-width: 900px) {
    .why-capdev-detail-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-capdev-visuals {
        flex-direction: row;
        gap: 20px;
    }
    
    .visual-img-wrapper {
        flex: 1;
        height: 240px;
    }
}

@media (max-width: 600px) {
    .why-capdev-visuals {
        flex-direction: column;
    }
    
    .why-detail-title {
        font-size: 2rem;
    }
    
    .why-detail-banner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .banner-divider {
        width: 40px;
        height: 1.5px;
        margin: 4px auto;
    }
}

/* ==========================================================================
   Sección Vacantes Abiertas (Cards de Reclutamiento)
   ========================================================================== */
.vacantes-section {
    background-color: #ffffff;
    color: #0e1225;
    padding: 100px 0;
    width: 100%;
}

.vacantes-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.vacantes-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.vacantes-tag {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #16a34a;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.vacantes-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 800;
    font-size: 2.85rem;
    color: #0e1225;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
}

.link-all-vacantes {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #16a34a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.link-all-vacantes:hover {
    color: #22c55e;
}

.link-all-vacantes .link-arrow {
    transition: transform 0.2s ease;
}

.link-all-vacantes:hover .link-arrow {
    transform: translateX(4px);
}

.vacantes-slider-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 15px 0 30px 0;
}

.vacantes-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.vacantes-section-header .header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.slider-nav-controls {
    display: flex;
    gap: 12px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #0e1225;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.slider-btn:hover:not(:disabled) {
    border-color: #16a34a;
    color: #16a34a;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.1);
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: #f1f5f9;
    color: #cbd5e1;
}

.vacante-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex: 0 0 calc((100% - (3 * 24px)) / 4);
    min-width: 270px;
    box-sizing: border-box;
}

.vacante-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(22, 163, 74, 0.3);
}

.card-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid transparent;
}

.python-icon {
    background-color: rgba(22, 163, 74, 0.08);
    border-color: rgba(22, 163, 74, 0.12);
    color: #16a34a;
}

.react-icon {
    background-color: rgba(0, 216, 255, 0.08);
    border-color: rgba(0, 216, 255, 0.12);
}

.qa-icon {
    background-color: rgba(22, 163, 74, 0.08);
    border-color: rgba(22, 163, 74, 0.12);
    color: #16a34a;
}

.devops-icon {
    background-color: rgba(0, 76, 255, 0.08);
    border-color: rgba(0, 76, 255, 0.12);
    color: #16a34a;
}

.vacante-card .job-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #0e1225;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.vacante-card .job-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.meta-item svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.2px;
}

.meta-divider {
    color: #cbd5e1;
}

.vacante-card .job-desc {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    margin: 0 0 24px 0;
    min-height: 48px;
}

.vacante-card .job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.vacante-card .job-tag {
    font-family: 'VinilaTest', sans-serif;
    background-color: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.vacante-card .card-footer {
    margin-top: auto;
    width: 100%;
}

.vacante-card .btn-apply {
    background-color: #16a34a;
    color: #ffffff;
    text-decoration: none;
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.15);
    border: none;
    cursor: pointer;
}

.vacante-card .btn-apply:hover {
    background-color: #22c55e;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
    transform: translateY(-2px);
}

.vacante-card .btn-apply .btn-arrow {
    transition: transform 0.2s ease;
}

.vacante-card .btn-apply:hover .btn-arrow {
    transform: translateX(4px);
}

/* Responsividad Sección Vacantes */
@media (max-width: 1200px) {
    .vacante-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .vacantes-section {
        padding: 80px 0;
    }
    
    .vacantes-container {
        padding: 0 20px;
    }
    
    .vacantes-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .vacantes-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 600px) {
    .vacante-card {
        flex: 0 0 100%;
    }
}

/* ==========================================================================
   Sección Tecnologías con las que trabajamos
   ========================================================================== */
.technologies-section {
    background-color: #ffffff;
    color: #0e1225;
    padding: 80px 0 100px 0;
    width: 100%;
}

.tech-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.tech-header {
    text-align: left;
    margin-bottom: 50px;
}

.tech-tag {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #16a34a;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    display: block;
}

.tech-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #0e1225;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.tech-intro {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
}

.tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.tech-card {
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.06);
    border-color: rgba(22, 163, 74, 0.15);
}

.tech-card-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(22, 163, 74, 0.08);
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.tech-card-icon-box svg {
    width: 24px;
    height: 24px;
}

.tech-card-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #0e1225;
    margin: 0 0 16px 0;
}

.tech-card-desc {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.tech-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.tech-badge {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: #16a34a;
    background-color: rgba(22, 163, 74, 0.06);
    padding: 6px 12px;
    border-radius: 20px;
    transition: background-color 0.2s ease;
}

.tech-card:hover .tech-badge {
    background-color: rgba(22, 163, 74, 0.1);
}

/* Fila de beneficios inferiores */
.tech-bottom-benefits {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding-top: 40px;
    border-top: 1px solid #f1f5f9;
}

.tech-bottom-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.tech-bottom-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f4f9f4;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-bottom-icon-box svg {
    width: 22px;
    height: 22px;
}

.tech-bottom-info {
    display: flex;
    flex-direction: column;
}

.tech-bottom-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0e1225;
    margin: 0 0 4px 0;
}

.tech-bottom-desc {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #475569;
    margin: 0;
    line-height: 1.4;
}

.tech-bottom-separator {
    width: 1px;
    height: 40px;
    background-color: #e2e8f0;
    margin: 0 30px;
    flex-shrink: 0;
}

/* Responsividad Sección Tecnologías */
@media (max-width: 1100px) {
    .tech-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-bottom-benefits {
        flex-direction: column;
        gap: 24px;
        border-top: none;
        padding-top: 0;
    }
    
    .tech-bottom-separator {
        display: none;
    }
    
    .tech-bottom-item {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 16px;
    }
    
    .tech-bottom-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 600px) {
    .tech-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-title {
        font-size: 2rem;
    }
    
    .tech-container {
        padding: 0 20px;
    }
}

/* ==========================================================================
   Sección Nuestro Proceso
   ========================================================================== */
.process-section {
    background-color: #ffffff;
    color: #0e1225;
    padding: 100px 0;
    width: 100%;
}

.process-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.process-header {
    text-align: left;
    margin-bottom: 70px;
}

.process-tag {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #16a34a;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    display: block;
}

.process-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #0e1225;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.process-intro {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
}

.process-timeline-wrapper {
    position: relative;
    margin-bottom: 100px;
}

.process-connecting-line {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
    pointer-events: none;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    min-height: 440px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 18%;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-up {
    margin-top: 0;
}

.step-down {
    margin-top: 80px;
}

.process-circle-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 24px;
}

.process-img-box {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 3px solid #ffffff;
    z-index: 2;
    position: relative;
}

.process-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #16a34a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.3);
    z-index: 10;
}

/* Wavy Liquid Border Ring */
.process-wavy-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1.5px dashed rgba(22, 163, 74, 0.35);
    border-radius: 50%;
    animation: wavy-spin 20s linear infinite;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.process-step:hover .process-wavy-ring {
    border-color: #16a34a;
    border-style: solid;
    transform: scale(1.03);
}

@keyframes wavy-spin {
    0% {
        transform: rotate(0deg);
        border-radius: 50% 48% 52% 50% / 50% 52% 48% 50%;
    }
    50% {
        border-radius: 48% 52% 50% 52% / 52% 48% 52% 48%;
    }
    100% {
        transform: rotate(360deg);
        border-radius: 50% 48% 52% 50% / 50% 52% 48% 50%;
    }
}

.process-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-icon-box {
    color: #16a34a;
    margin-bottom: 12px;
}

.process-icon-box svg {
    width: 28px;
    height: 28px;
}

.process-step-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0e1225;
    margin: 0 0 8px 0;
}

.process-step-desc {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

/* Fila de beneficios inferiores de Proceso */
.process-bottom-highlights {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding-top: 40px;
    border-top: 1px solid #f1f5f9;
}

.process-highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.process-highlight-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f4f9f4;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-highlight-icon-box svg {
    width: 28px;
    height: 28px;
}

.process-highlight-info {
    display: flex;
    flex-direction: column;
}

.process-highlight-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0e1225;
    margin: 0 0 4px 0;
}

.process-highlight-desc {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #475569;
    margin: 0;
    line-height: 1.4;
}

.process-highlight-separator {
    width: 1px;
    height: 40px;
    background-color: #e2e8f0;
    margin: 0 30px;
    flex-shrink: 0;
}

/* Responsividad Sección Proceso */
@media (max-width: 1100px) {
    .process-steps {
        flex-direction: column;
        gap: 40px;
        min-height: auto;
        align-items: center;
    }
    
    .process-step {
        width: 100%;
        max-width: 400px;
    }
    
    .step-down {
        margin-top: 0;
    }
    
    .process-connecting-line {
        display: none;
    }
    
    .process-bottom-highlights {
        flex-direction: column;
        gap: 24px;
        border-top: none;
        padding-top: 0;
    }
    
    .process-highlight-separator {
        display: none;
    }
    
    .process-highlight-item {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 16px;
    }
    
    .process-highlight-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 600px) {
    .process-title {
        font-size: 2rem;
    }
    
    .process-container {
        padding: 0 20px;
    }
}

/* ==========================================================================
   Sección Life at CapDev & Video Modal
   ========================================================================== */
.life-section {
    background-color: #f8fafc;
    padding: 100px 0;
    width: 100%;
}

.life-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.life-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}

.life-tag {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #16a34a;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    display: block;
}

.life-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #0e1225;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.life-intro {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
}

.btn-outline-green {
    border: 1.5px solid #16a34a;
    color: #16a34a;
    background-color: transparent;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-green:hover {
    background-color: #16a34a;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.2);
}

.play-small-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: rgba(22, 163, 74, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-outline-green:hover .play-small-icon {
    background-color: #ffffff;
    color: #16a34a;
}

/* Grilla de videos */
.life-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.life-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.life-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #0e1225;
    overflow: hidden;
}

.video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.life-card:hover .video-cover {
    transform: scale(1.05);
}

.video-duration {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(14, 18, 37, 0.8);
    color: #ffffff;
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 3;
}

.video-play-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 4;
}

.video-play-overlay-btn svg {
    width: 22px;
    height: 22px;
    margin-left: 2px;
}

.video-play-overlay-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #16a34a;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

/* Reproductor Inline en la Tarjeta */
.card-inline-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
}

.video-expand-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(14, 18, 37, 0.85);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 6;
}

.video-expand-btn:hover {
    background-color: #16a34a;
}

/* Info de la tarjeta de video */
.life-card-info {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.quote-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(22, 163, 74, 0.25);
    background-color: #ffffff;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quote-circle svg {
    width: 14px;
    height: 14px;
}

.life-text-box {
    display: flex;
    flex-direction: column;
}

.life-card-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #0e1225;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.life-card-sub {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

/* Indicador central inferior */
.life-bottom-row {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.life-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f4f9f4;
    color: #16a34a;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.05);
}

/* Video Modal Lighbox Overlay */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(14, 18, 37, 0.95);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    background-color: #000000;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(22, 163, 74, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10100;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color: #16a34a;
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.video-modal-element {
    width: 100%;
    height: 100%;
    display: block;
}

.video-modal-footer {
    background-color: #0f172a;
    padding: 16px 24px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.video-modal-fullscreen-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-modal-fullscreen-btn:hover {
    background-color: #16a34a;
    border-color: #16a34a;
}

/* Responsividad Life section */
@media (max-width: 1200px) {
    .life-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .life-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .btn-outline-green {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .life-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .life-title {
        font-size: 2rem;
    }
    
    .life-container {
        padding: 0 20px;
    }
}

/* ==========================================================================
   Sección Banner CTA Final (Para Developers)
   ========================================================================== */
.dev-banner-cta {
    background: linear-gradient(135deg, #0940f2 0%, #0324a6 100%);
    height: 170px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.dev-banner-cta .banner-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Left: Icon Badge */
.dev-banner-cta .banner-icon-box {
    display: flex;
    align-items: center;
    margin-right: 32px;
    flex-shrink: 0;
}

.dev-banner-cta .banner-bulb-badge {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.dev-banner-cta .banner-bulb-badge svg {
    width: 38px;
    height: 38px;
    stroke: currentColor;
}

/* Middle: Text Contents */
.dev-banner-cta .banner-text-box {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dev-banner-cta .banner-tag {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.15em;
    margin-bottom: 6px;
    display: block;
}

.dev-banner-cta .banner-title {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 800;
    font-size: 1.85rem;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.dev-banner-cta .banner-subtitle {
    font-family: 'VinilaTest', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.3;
}

/* Right: Action Buttons Row */
.dev-banner-cta .banner-action-box {
    margin-left: 40px;
    flex-shrink: 0;
}

.dev-banner-cta .banner-buttons-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-banner-hablemos {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #ffffff;
    color: #0324a6;
    border: 1.5px solid #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.btn-banner-hablemos:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    color: #0324a6;
    border-color: #ffffff;
}

.btn-banner-hablemos .btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-banner-hablemos:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-banner-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    padding: 15px 30px;
    border-radius: 8px;
    font-family: 'VinilaTest', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, background-color 0.3s ease;
}

.btn-banner-outline:hover {
    transform: translateY(-3px) scale(1.02);
    background-color: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-banner-outline .btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-banner-outline:hover .btn-arrow {
    transform: translateX(4px);
}

/* Background Decorative elements */
.dev-banner-cta .banner-stripe-left {
    position: absolute;
    left: -30px;
    top: -60px;
    width: 90px;
    height: 280px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(28deg);
    filter: blur(2px);
    pointer-events: none;
    z-index: 1;
    animation: stripePulse 4s infinite ease-in-out;
}

.dev-banner-cta .banner-glow-circle-1 {
    position: absolute;
    right: 32%;
    top: 25%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.16);
    filter: blur(4px);
    pointer-events: none;
    z-index: 1;
    animation: circleFloat1 4.5s infinite ease-in-out;
}

.dev-banner-cta .banner-glow-circle-2 {
    position: absolute;
    right: 3%;
    top: -15%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    filter: blur(8px);
    pointer-events: none;
    z-index: 1;
    animation: circleFloat2 6.5s infinite ease-in-out;
}

/* Responsividad Banner CTA */
@media (max-width: 1100px) {
    .dev-banner-cta {
        height: auto;
        padding: 60px 0;
    }

    .dev-banner-cta .banner-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .dev-banner-cta .banner-icon-box {
        margin-right: 0;
    }

    .dev-banner-cta .banner-action-box {
        margin-left: 0;
    }

    .dev-banner-cta .banner-stripe-left {
        display: none;
    }
}

@media (max-width: 580px) {
    .dev-banner-cta .banner-title {
        font-size: 1.6rem;
    }

    .dev-banner-cta .banner-subtitle {
        font-size: 1rem;
    }

    .dev-banner-cta .banner-buttons-row {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-banner-hablemos,
    .btn-banner-outline {
        width: 100%;
        justify-content: center;
        padding: 12px 28px;
        font-size: 1rem;
    }
}





.video-modal-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
