.container {
    padding: 0rem 0;
}

/* Navbar */
.navbar {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    padding: 0.25rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-height: 28px;
    max-width: 100%;
}

.navbar-brand {
    color: white !important;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    padding-top: 0.15625rem;    /* Reduce padding vertical */
    padding-bottom: 0.15625rem;
}

/* Logo */
.logo-container {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-sun {
    color: #FFD700;
    font-size: 2rem;
    animation: rotate 20s linear infinite;
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
}

.logo-panel {
    position: absolute;
    color: #4e4432;
    font-size: 1.5rem;
    transform: rotate(45deg);
}

/* Footer */
footer {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

/* Parallax Section */
.parallax-section {
    position: relative;
    height: 500px;
    background-image: url('../img/casa-solar.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.parallax-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-content h5 {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Media queries para dispositivos móviles */
@media (max-width: 768px) {
    .parallax-section {
        height: 300px;
        background-attachment: scroll; /* Cambia a scroll en móviles */
    }

    .parallax-content {
        padding: 50px 20px;
    }

    .parallax-content h2 {
        font-size: 2rem;
    }

    .parallax-content h5 {
        font-size: 1.2rem;
    }
} 