

.content-band {
    position: relative;
    padding: 6rem 0;
    color: white !important;
    background: linear-gradient(to bottom, #05173b 0%, #000000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: -2px;
    z-index: 2;
}

.content-header {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.content-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: white !important;
    margin: 0;
    line-height: 1.1;
}

.content-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #E73E1D;
    text-decoration: none;
    transition: color 0.2s;
}
.content-link:hover {
    color: #ff5733;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.news-card {
    display: block;
    text-decoration: none;
    color: white;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.card-img-container {
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.news-card:hover .card-img-container img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    color: white !important;
    transition: color 0.2s ease;
}

.news-card:hover .card-title {
    color: #E73E1D !important;
}

.card-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4) !important;
    white-space: nowrap;
}

.card-link-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #E73E1D;
}

.card-link-text iconify-icon {
    transition: transform 0.3s ease;
}

.news-card:hover .card-link-text iconify-icon {
    transform: translateX(4px);
}

.closing-cta-section {
    position: relative;
    padding: 6rem 0 !important;
    margin-bottom: -1px;
    background-color: #000000;
    border-top: none;
}

.closing-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(231, 62, 29, 0.15) 0%, transparent 60%);
    z-index: 0;
}

.closing-cta-container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 500;
    color: white !important;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 3rem;
}

.closing-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(231, 62, 29, 0.3);
    border-radius: 9999px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.closing-cta-button:hover {
    background: rgba(0, 100, 255, 0.2);
    border-color: rgba(0, 100, 255, 0.6);
    box-shadow: 0 0 30px -5px rgba(0, 100, 255, 0.4);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .content-title { font-size: 2rem; }
    .cta-title { font-size: 1.75rem; }
    .news-grid { gap: 3rem; }
}

.closing-cta-section {
    margin-top: -2px !important;
    padding-top: 8rem !important;
}

.closing-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-title, .cta-text {
    text-align: center !important;
    width: 100%;
}

.soluciones-section .tarjeta {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(2.5px) !important;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.soluciones-section .tarjeta:hover {
    box-shadow: 0 0 30px rgba(0, 100, 255, 0.6);
    border-color: rgba(0, 100, 255, 0.8);
    background: rgba(255, 255, 255, 0.25) !important;
    z-index: 10;
}

@media (min-width: 992px) {
    .snosotros-section {
        height: auto !important;
        min-height: 0 !important;
        padding-top: 2.2rem;
        padding-bottom: 4rem;
    }

    .snosotros-section .video {

        width: min(38vw, 560px) !important;
        height: min(38vw, 560px) !important;
        max-width: calc(100% - 3rem);
        position: absolute;
        top: clamp(2.6rem, 5vw, 4.8rem);
        right: clamp(2.2rem, 5vw, 5rem);
        transform: none;
        border-radius: 14px;
        overflow: hidden;
    }

    .snosotros-section .video img,
    .snosotros-section .video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .snosotros-section .video img,
    .snosotros-section .video video {
        object-position: 100% center;
    }
}

@media (max-width: 991px) {
    .snosotros-section .video {
        width: min(92vw, 460px);
        aspect-ratio: 1 / 1;
        height: auto !important;
        margin: 0 auto 1.5rem;
        position: relative;
        top: auto;
        right: auto;
        border-radius: 14px;
        overflow: hidden;
    }

    .snosotros-section .video img,
    .snosotros-section .video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

.adn-waves-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(to bottom, #05173b 0%, #000000 100%);
    overflow: hidden;
}

.adn-waves-container svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.45;
}

.soluciones-section .container {
    position: relative;
    z-index: 2;
}

#adn.soluciones-section {
    position: relative;
    background: transparent !important;
    z-index: 1;
}

.closing-cta-section .adn-waves-container {
    background: transparent !important;
    pointer-events: none;
}

.trabaja2-static .adn-waves-container {
    display: none;
}

.trabaja2-static .circuit-wave-1,
.trabaja2-static .circuit-wave-2,
.trabaja2-static .circuit-wave-3,
.trabaja2-static .circuit-wave-4,
.trabaja2-static .circuit-wave-5 {
    animation: none !important;
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
}
