@import url('https://solargentinotv.com.ar/assets/fonts/Gilroy/Gilroy.css');

@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #02a22a;
    --text-color: #333;
    --background-color: #ffffff;
    --neon-green: #39ff14;
    /* Verde neón */
    --shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

* {
    font-family: 'Gilroy';
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

footer .web-copyright {
    margin-top: 1.1em;
}

footer p {
    font-weight: 700;
    font-size: 1.5em;
    line-height: 1.4;
}

body {
    background-color: var(--background-color);
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-color);
}

/* Header */
header {
    background-color: #fff;
    color: var(--primary-color);
    padding: 20px 40px;
    text-align: center;
    border-bottom: 3px solid var(--neon-green);
    box-shadow: 0 4px 10px var(--neon-green);
}

header h1 {
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #fff;
    color: var(--primary-color);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 3px solid var(--neon-green);
    box-shadow: 0 -4px 10px var(--neon-green);
    position: relative;
    height: 8em;
    top: 6em;
    width: 103%;
    left: -2.4em;
}

footer h1 {
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin: 5px 0;
}

.social-icons {
    display: flex;
    gap: 12px;
    /* Espacio entre íconos */
    justify-content: center;
    /* Centrado horizontal */
    align-items: center;
    /* Centrado vertical */
    margin-top: 16px;
}

.social-icons img {
    filter: brightness(0) saturate(100%) invert(41%) sepia(96%) saturate(826%) hue-rotate(97deg) brightness(88%) contrast(98%);
}

.social-icons a img {
    width: 32px;
    height: 32px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s ease-in-out;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2em;
    padding: 0;
    margin: 1.5em 0 1em 0;
}

nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    background: #fff;
    outline: 2px solid var(--neon-green);
    padding: 0.5em 1em;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px var(--neon-green), 0 0 15px var(--neon-green);
}

nav ul li a:hover,
nav ul li a.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* Selection */
::selection {
    color: #fff;
    background: var(--primary-color);
}

/* Contenido principal */
#medio-pago-articulo {
    max-width: 1000px;
    margin: 4em auto;
    padding: 2.5em 3em;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease-in-out;
}

.articulo-header {
    text-align: center;
    margin-bottom: 2em;
}

.articulo-header h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 0.5em;
}

.contenido-articulo {
    display: flex;
    align-items: flex-start;
    gap: 2em;
    flex-wrap: wrap;
}

.texto {
    flex: 1 1 60%;
    min-width: 280px;
    text-align: justify;
}

.texto p {
    margin-bottom: 1.8em;
    color: var(--text-color);
}

.destacado {
    font-weight: 600;
    color: var(--primary-color);
}

.fotosn {
    flex: 1 1 35%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Enlace destacado */
.enlace-pago a {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.enlace-pago a:hover {
    color: #fff;
    background-color: var(--primary-color);
    padding: 0.3em 0.7em;
    border-radius: 0.3em;
}

.enlace-pago img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

/* Información de contacto */
.contacto-info {
    list-style: none;
    padding-left: 0;
    margin-top: 2em;
}

.contacto-info li {
    font-size: 1.2em;
    margin-bottom: 1.2em;
}

.contacto-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contacto-info a:hover {
    color: #fff;
}

/* Responsive */

@media (max-width: 600px) {
    header h1 {
        font-size: 1.6em;
    }
}

@media (max-width: 900px) {
    .contenido-articulo {
        flex-direction: column;
        align-items: center;
    }

    .texto {
        max-width: 100%;
    }

    .fotosn {
        margin: 2em 0 0;
        width: 100%;
    }
}