/*
Theme Name: Próximamente
Theme URI: https://eltecnomano.com/
Author: José Durán
Author URI: https://eltecnomano.com/
Description: abiso de pagina en construccion.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: noticias-digitales
*/



/* Estilos generales */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f9ff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Header */
header {
    padding: 20px 0;
}

.logo img {
    max-width: 200px;
    height: auto;
}

/* Main Content */
main {
    padding: 50px 20px;
}

h1 {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
}

.message {
    font-size: 1.1rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Progress Bar */
.progress-container {
    width: 80%;
    max-width: 500px;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin: 30px auto;
    overflow: hidden;
}

.progress-bar {
    width: 70%;
    height: 100%;
    background-color: #0056b3;
    border-radius: 5px;
    animation: progress 2s ease-in-out forwards;
}

@keyframes progress {
    from { width: 0; }
    to { width: 70%; }
}

/* Contact Section */
.contact {
    margin: 40px 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.contact-info a {
    color: #0056b3;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #003d82;
}

.contact-info i {
    margin-right: 8px;
}

/* Footer */
footer {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.social {
    margin-bottom: 15px;
}

.social a {
    color: #0056b3;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social a:hover {
    color: #003d82;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1.1rem;
    }
}