@font-face {
    font-family: Suprema;
    src: url(../fuentes/Artegra-SupremaThin.otf);
}
@font-face {
    font-family: SupremaBold;
    src: url(../fuentes/suprema-bold.ttf);
}
body, html {
    margin: 0;
    padding: 0;
    font-family: Suprema;
    box-sizing: border-box;
    text-align: justify;
}
span{
    font-family: SupremaBold;
    color: #233a64;
}

section {
    margin-bottom: 40px;
}
/* Ajustes Navbar */
.navbar {
    transition: background-color 0.8s ease;
    background-color: transparent; 
    margin-bottom: 20px;
    position: fixed;
    width: 100vw;
    z-index: 999;
}
.scrolled {
    background-color: #f4f4f4
}

.nav-link {
    font-family: SupremaBold;
    color: #ffffff;
}
.scrollednl{
    color: #233a64;
}
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../media/contacto.jpg) no-repeat center center/cover; 
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
#hero span {
    color: white;
}
#contacto {
    padding: 60px 0;
}

#contacto h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

#contacto p.lead {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.contact-info, .contact-form {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.contact-info h3, .contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-info ul {
    padding-left: 0;
    list-style: none;
}

.contact-info li {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 10px;
}

.contact-info i {
    font-size: 1.5rem;
    color: #007bff;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

#contact-form .form-control {
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
}

#contact-form .btn-primary {
    background-color: #394e74;
    border-color: #394e74;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
}

#contact-form .btn-primary:hover {
    background-color: #233a64;
    border-color: #233a64;
}

.embed-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: #e9ecef;
    border-radius: 8px;
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

footer {
    background-color: rgb(243, 243, 243);
    color: #233a64;
    padding: 20px 0;
    font-family: SupremaBold;
}

footer p {
    margin: 0;
    font-size: 0.875rem;
    color: #233a64;
}

footer a {
    color: #233a64;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .col-md-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

footer .col-md-4 img {
  margin-bottom: 1rem;
}

footer .col-md-4 h5 {
  margin-bottom: 0;
}

footer .desarrollo{
    color: #54728fc4;
}

#loader-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 2s ease-out; 
}