/*
Solo para referencia. Estas variables están definidas en style.css
:root {
    --dark-color: #333333;
    --dark-gray-color: #555555;
    --gray-color: #aaaaaa;
    --light-gray-color: #e7e7e7;
    --light-color: #ffffff;
    --primary-color: #1766ae;
    --secondary-color: #f39222;
    --terciary-color: #dd2727;
    --light-shadow: #00000038;
    --dark-blue-color: #183153;
    --transition: 250ms;
    --bold-font: 800;
    --thin-font: 300;
    --font-family-primary: 'Montserrat';
}
*/

.socials {
    width: 100%;
    padding: 60px 20px;
    background-color: var(--primary-color);
    .socials__content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        gap: 40px;
    }
    .socials__box {
        flex: 1;
        padding: 20px;
        h3 {
            font-family: var(--font-family-primary, 'Montserrat'), sans-serif;
            font-size: 2rem;
            font-weight: var(--bold-font, 800);
            color: var(--light-color);
            margin: 0;
            line-height: 1.3;
        }
        &:last-child {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
    }
    .socials__item {
        margin: 0;
    }
    .socials__link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: var(--light-color);
        color: var(--primary-color);
        font-size: 1.5rem;
        text-decoration: none;
        transition: all var(--transition, 250ms) ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        &:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
    }
}

/* Responsive */
@media (max-width: 768px) {
    .socials {
        padding: 40px 20px;
    }
    .socials__content {
        flex-direction: column;
        gap: 30px;
    }
    .socials__box {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
    .socials__box h3 {
        font-size: 1.5rem;
    }
    .socials__link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

