/* ===== SECCIÓN INSTAGRAM ===== */

:root {
    --malvinasGradient: linear-gradient(
        135deg,
        #0B91CE 0%,
        #0873A8 60%,
        #065E8C 100%
    );
}

.social-section {
    background: var(--malvinasGradient);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.social-section::after {
    content: '';
    position: absolute;
    bottom: -60%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 193, 83, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.social-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
}

.social-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

.social-handle {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: opacity 0.2s ease;
}

.social-handle:hover {
    opacity: 0.8;
    color: white;
}

.social-accent-bar {
    width: 3rem;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    margin-top: 0.5rem;
}
