
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@keyframes rotateCarousel {
    from {
        transform: perspective(1000px) rotateY(0deg);
    }
    to {    
        transform: perspective(1000px) rotateY(360deg);
    }
}

.box {
    animation: rotateCarousel 40s linear infinite;
}
body {
    min-height: 300vh;
    background: url(../img/pexels-tahmetler-9973105.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.text {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    padding: 30px;
    color: rgb(255, 255, 255);
    margin-bottom: 100px;
}

.box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    width: 300px;
    height: 300px;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(0deg);
}

.box span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i) * 45deg)) translateZ(400px);
    -webkit-box-reflect: below 0px linear-gradient(transparent, transparent, #0004);
}

.box span img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.container-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.1);
    
    width: 100%;
    color: white;
}

.container-secciones {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 50px auto;
    width: 100%;
    color: white;
}

.seccion {
    background: rgba(0, 0, 0, 0.6);
    padding: 50px;
    margin: 20px;
    border-radius: 30px;
    width: 60%;
}
.navbar {
    background-color: #222;
    border: none;
    border-radius: 0;
}
.nav > li > a {
    color: #fff !important;
    padding: 15px 20px;
    font-size: 1.1em;
    transition: background 0.3s;
}
.nav > li > a:hover {
    background-color: #444;
}
.navbar-nav .active a {
    background-color: #6be07f !important;
    color: #222 !important;}
 /* Estilos del Footer */
.footer {
    background: #222;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: auto;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo h2 {
    font-size: 24px;
    font-weight: bold;
}

.social-icons i {
    font-size: 20px;
    color: white;
    margin: 10px;
    cursor: pointer;
}

/* Sección de enlaces */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    text-align: left;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
}
.footer-column p, .footer-column a {
    margin: 2px 0;
    font-size: 14px;
}
.footer-column h3 {
    font-size: 16px;
    font-weight: bold;
}

.footer-column a {
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.footer-column a:hover {
    text-decoration: underline;
}

/* Línea inferior */
.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid white;
    padding-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-bottom a {
    text-decoration: none;
    color: white;
    font-size: 12px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
   