/* Estilos generales del footer */
.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
}

/* Grid del footer */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilos para cada sección del footer */
.footer-section {
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f1c40f;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #f1c40f;
}

/* Estilos para los íconos sociales */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-link {
    color: #ecf0f1;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #f1c40f;
}

/* Estilos para el formulario de newsletter */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group {
    display: flex;
    gap: 10px;
}

.form-group input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

.btn-subscribe {
    background-color: #f1c40f;
    color: #2c3e50;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #e67e22;
}

/* Estilos para la sección de contacto */
.footer-contact {
    margin-top: 30px;
    padding: 20px;
    background-color: #34495e;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.contact-item i {
    color: #f1c40f;
}

/* Estilos para el footer bottom */
.footer-bottom {
    background-color: #1a252f;
    padding: 15px 0;
    text-align: center;
    margin-top: 20px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #f1c40f;
}



















/* Estilos generales para la sección #banner */
#banner {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #fff;
    padding: 6rem 2rem;
    overflow: hidden;
    text-align: center;
    border-bottom: 3px solid #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

/* Efecto de luz de neón en el borde superior */
#banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #00ff88 20%,
        #00ffea 50%,
        #00ff88 80%,
        transparent 100%
    );
    animation: borderGlow 4s ease-in-out infinite;
    filter: blur(1px);
}

/* Contenedor interno */
#banner .inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilos para el encabezado */
#banner header.major {
    margin-bottom: 3rem;
}

#banner header.major h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #00ff88;
    animation: textGlow 2s ease-in-out infinite alternate;
}

#banner header.major p {
    font-size: 1.25rem;
    color: #ccc;
    margin-top: 0.5rem;
}

/* Estilos para el contenido */
#banner .content {
    margin-top: 2rem;
}

#banner .content p {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 2rem;
}

/* Estilos para los highlights */
#banner .highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

#banner .highlight-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#banner .highlight-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

#banner .highlight-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 1rem;
}

#banner .highlight-box .percentage {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    animation: textGlow 2s ease-in-out infinite alternate;
}

/* Animación de brillo en el texto */
@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    }
}

/* Animación del borde mejorada */
@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.8;
    }
    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
}

/* Efecto de partículas futuristas */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ff88;
    border-radius: 50%;
    animation: particleAnimation 4s infinite linear;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

@keyframes particleAnimation {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-150px) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Media Queries para responsividad */
@media screen and (max-width: 768px) {
    #banner header.major h1 {
        font-size: 2.5rem;
    }

    #banner header.major p {
        font-size: 1rem;
    }

    #banner .highlight-box {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    #banner .highlights {
        flex-direction: column;
        align-items: center;
    }
}


/* Estilos generales para la sección #banner */
#banner {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #fff;
    padding: 6rem 2rem;
    overflow: hidden;
    text-align: center;
    border-bottom: 3px solid #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

/* Efecto de luz de neón en el borde superior */
#banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #00ff88 20%,
        #00ffea 50%,
        #00ff88 80%,
        transparent 100%
    );
    animation: borderGlow 4s ease-in-out infinite;
    filter: blur(1px);
}

/* Contenedor interno */
#banner .inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

/* Estilos para el encabezado */
#banner header.major {
    margin-bottom: 3rem;
}

#banner header.major h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #00ff88;
    animation: textGlow 2s ease-in-out infinite alternate;
}

#banner header.major p {
    font-size: 1.25rem;
    color: #ccc;
    margin-top: 0.5rem;
}

/* Estilos para el contenido */
#banner .content {
    margin-top: 2rem;
}

#banner .content p {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 2rem;
}

/* Estilos para los highlights */
#banner .highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

#banner .highlight-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#banner .highlight-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

#banner .highlight-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 1rem;
}

#banner .highlight-box .value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    animation: textGlow 2s ease-in-out infinite alternate;
}

#banner .highlight-box .sentiment {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

#banner .highlight-box .sentiment.positive {
    color: #00ff88;
}

#banner .highlight-box .sentiment.negative {
    color: #ff3366;
}

#banner .highlight-box .forecast {
    font-size: 1.75rem;
    font-weight: 600;
    color: #00ff88;
    margin: 0.5rem 0;
}

#banner .highlight-box .trend {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

#banner .highlight-box .trend.up {
    color: #00ff88;
}

#banner .highlight-box .trend.down {
    color: #ff3366;
}

#banner .highlight-box .baseline,
#banner .highlight-box .period {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 0.5rem;
}

/* Animación de brillo en el texto */
@keyframes textGlow {
    0% {
        text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
    }
    100% {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    }
}

/* Animación del borde mejorada */
@keyframes borderGlow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.8;
    }
    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
}

/* Efecto de partículas futuristas */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ff88;
    border-radius: 50%;
    animation: particleAnimation 4s infinite linear;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

@keyframes particleAnimation {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-150px) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Media Queries para responsividad */
@media screen and (max-width: 768px) {
    #banner header.major h1 {
        font-size: 2.5rem;
    }

    #banner header.major p {
        font-size: 1rem;
    }

    #banner .highlight-box {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    #banner .highlights {
        flex-direction: column;
        align-items: center;
    }
}