*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: relative;
}

.navegacion {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.navegacion {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.navegacion ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.navegacion ul li a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navegacion ul li a:hover::after {
    width: 100%;
}

.logo {
    flex: 1;
    z-index: 1001;
}

.logo a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    font-family: "Abyssinica SIL", serif;
    transition: all 0.3s ease;
}

.logo a:hover{
    transform: scale(105);
}

.navegacion nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.navegacion nav ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.navegacion nav ul li a:hover {
    transform: scale(1.1);
}

.navegacion nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar nav ul li a:hover::after {
    width: 100%;
}

.entrar {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 1001;
}

.ingresar-btn {
    background-color: #000000;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 20px;
    padding: 10px 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ingresar-btn:hover {
    background-color: #0066cc;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.ingresar-btn:active {
    background-color: #002f60;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button-container a {
    background-color: #000000;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.button-container a:hover {
    background-color: #002f60;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.button-container a:active {
    background-color: #002f60;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contenedor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 750px;
    margin: auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    margin-top: 5%;
}

.contenedor:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.imagen img {
    width: 100%;
    max-width: 380px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out;
}

.imagen img:hover {
    transform: scale(1.08);
}

.informacion {
    max-width: 480px;
    text-align: left;
}

.informacion h2 {
    font-size: 28px;
    color: #0d1097;
    font-weight: bold;
}

.informacion p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .contenedor {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .informacion {
        text-align: center;
    }
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)), url('Ciudad1.PNG') no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    color: rgb(0, 0, 0);
    padding: 40px;
}

.container {
    max-width: 1200px;
    margin: 80px auto 40px;
    padding: 50px 20px;
    text-align: center;
}

.titulo {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-family: "Tagesschrift", system-ui;
}

.logos {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(to right, #ffffff, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.card {
    position: relative;
    width: 300px;
    height: 200px;
    background-color: #ffffff;
    color: rgb(255, 255, 255);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.default-text {
    position: absolute;
    z-index: 2;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 0 20px;
    line-height: 1.5;
    color: #000000;
}

.card .content {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: rgba(107, 105, 105, 0.92);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1;
}

.card .content .contenido {
    font-size: 14px;
    line-height: 1.4;
    max-width: 85%;
    text-align: center;
    padding: 8px;
}

.card:hover .default-text {
    transform: translateY(-20px);
    opacity: 0;
}

.card:hover .content {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .card {
        width: 90%;
        height: auto;
        padding: 30px 10px;
    }

    .card .content {
        font-size: 14px;
        padding: 20px;
    }

    .default-text {
        font-size: 18px;
    }
}

.hero3 h1{
    color: #ffffff;
}

.hero3 {
    text-align: center;
    padding: 60px 20px;
    color: #ffffff;
}

.hero3 h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero3 p {
    font-size: 1.2em;
    color: #cec2c2;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 20px;
}

.feature {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 20px;
    flex: 1 1 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.feature:hover {
    transform: translateY(-8px);
}

.feature img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
}

.social-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.social-link img {
    width: 60px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.social-link img:hover {
    transform: scale(1.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.heros2{
    background-color: #002f60;
}

.logo{
    font-family: "Abyssinica SIL", serif;
}