﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #f5f5f5;
}


.descargas-section {
    width: 100%;
    background-color: #ffffff;
    padding-bottom: 55px;
    padding-top: 55px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.descargas-titulo {
    margin-bottom: 20px;
}

.descargas-titulo h2 {
    color: #000000 !important;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.5;
    margin: 0;
}


.descargas-subtitulo {
    margin-bottom: 30px;
}

.descargas-subtitulo h3 {
    color: #000000 !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-transform: none;
}


.descargas-lista {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.descarga-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.descarga-icon {
    flex-shrink: 0;
    width: 24px;
    height: 34px;
    margin-top: 3px;
}

.descarga-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.descarga-link {
    color: #00B9D8;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.descarga-link:hover {
    color: #008DA8;
    text-decoration: underline;
}


@media (max-width: 1024px) {
    .descargas-titulo h2 {
        font-size: 26px;
    }

    .descargas-subtitulo h3 {
        font-size: 19px;
    }

    .descarga-link {
        font-size: 17px;
    }
}


@media (max-width: 767px) {
    .descargas-section {
        padding: 40px 0;
    }

    .descargas-titulo h2 {
        font-size: 28px;
    }

    .descargas-subtitulo {
        margin-bottom: 20px;
    }

    .descargas-subtitulo h3 {
        font-size: 18px;
    }

    .descargas-lista {
        gap: 18px;
    }

    .descarga-item {
        gap: 12px;
    }

    .descarga-icon {
        width: 22px;
        height: 22px;
    }

    .descarga-link {
        font-size: 18px;
    }
}

