/* General */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('fondopropio.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #333;
}

/* Línea superior */
.top-bar {
    background-color: #333;
    color: white;
    font-size: 14px;
    text-align: center;
    padding: 0.1px 0;
    line-height: 0.3;
    z-index: 1000;
    position: fixed;
    width: 100%;
    top: 0;
}

/* Header */
header {
    background: linear-gradient(rgba(51, 51, 51, 0.8), rgba(51, 51, 51, 0));
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 30px;
    z-index: 999;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.logo-container img {
    height: 50px;
    margin-left: 20px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    margin-right: 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a.active, nav ul li a:hover {
    color: #ffcc80;
}

/* Hero Section */
.hero {
    height: 100vh; /* 🔥 Se mantiene para que la imagen se vea completa 🔥 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.7);
    margin-top: 80px;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
}

.hero p {
    font-size: 1.5rem;
    margin: 20px 0;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f57c00;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e65100;
}

/* Sección de Enlaces */
.footer-links {
    background-color: #222;
    color: white;
    padding: 50px 0;
    margin-top: 100vh; /* 🔥🔥🔥 Se bajó aún más para que aparezca después de la imagen 🔥🔥🔥 */
}

.links-container {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

.column {
    width: 20%;
}

.column h3 {
    color: #f57c00;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.column ul {
    list-style: none;
    padding: 0;
}

.column ul li {
    margin-bottom: 5px;
}

.column ul li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.column ul li a:hover {
    color: #ffcc80;
}

/* Footer */
footer {
    background-color: rgba(245, 124, 0, 0.9);
    color: white;
    text-align: center;
    padding: 20px 0;
}
