.contact-section-light {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
}
.img-vector {

    max-width: 100%;
    transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
    .img-vector {
        display: none;
    }
    .contact-section-light {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-card-light {
        width: 100%;
        max-width: 400px;
    }
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;

    color: white;
    flex-wrap: wrap;
}
.footer-left {
    flex: 1;
    min-width: 250px;
}
.footer-logo img {
    width: 160px;
    margin-bottom: 1rem;
}
.footer-contact p {
    margin: 0.2rem 0;
    font-size: 0.95rem;
}
.footer-center {
    display: flex;
    flex: 2;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-section h2 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #38bdf8;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section li {
    margin-bottom: 0.4rem;
}
.footer-section a {
    text-decoration: none;

    transition: color 0.3s ease;
}
.footer-section a:hover {
    color: #38bdf8;
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-left,
    .footer-center {
        width: 100%;
    }
    .footer-center {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        margin-bottom: 1.5rem;
        max-width: 400px;
    }
}
.field-error {
	border-color: #e74c3c !important;
	background-color: #ffe6e6 !important;
	box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}
.field-error:focus {
	border-color: #c0392b !important;
	box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2) !important;
}
.field-error-message {
	display: none;
	color: #e74c3c;
	font-size: 0.85rem;
	margin-top: 5px;
	padding-left: 5px;
	animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.form-group-light {
	position: relative;
	margin-bottom: 25px;
}
/* Estilos base del header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}
.header .container-fluid {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}
.hero {
    padding-top: 80px;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
    padding: 0.5rem;
    z-index: 1001;
}
.nav {
    display: block;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;

}
.nav-link,
.btn-signin,
.btn-register {
    transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        transform: translateY(-140%);
        transition: transform 0.3s ease-in-out;
        overflow-y: auto;
        max-height: 100vh;
        z-index: 999;
    }
    .nav.hidden {
        display: block;
        transform: translateY(-140%);
    }
    .nav.active {
        transform: translateY(0);
    }
    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
         background-color: #030334;
    }
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-menu li:last-child {
        border-bottom: none;
    }
    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        width: 100%;
        color: #fff;
        text-align: center;
    }
    .btn-signin,
    .btn-register {
        display: block;
        width: calc(100% - 2rem);
        text-align: center;
        margin: 0.5rem 1rem;
        padding: 0.65rem 1rem;
    }
}
@media screen and (max-width: 480px) {
    .menu-toggle {
        font-size: 1.25rem;
    }
}
.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: #030334;
    height: 70px;
}
.header.scrolled .container-fluid {
    min-height: 60px;
}
.logo-image {
    max-width: 150px;
    height: auto;
}
@media screen and (max-width: 480px) {
    .logo-image {
        max-width: 120px;
    }
}
