
        body {
            font-family: "Arial", sans-serif;
            background-color: #e8f764;
            color: #333;
            padding: 15px;
        }

        h2 {
            font-family: "Orange Red", sans-serif;
            color: #ff4500;
        }

         h3 {
            font-size: 0.5 em;
            color:  #FFB86C; /* Color anaranjado suave */
        }

         h5 {
            font-size: 0.3 em;
            color:  #FFA500; /* Color anaranjado suave */
        }


        p {
            font-family: "Georgia", serif;
            color: #555;
             margin-top: 0.5em;
            margin-bottom: 1em;
        
         }

        

        a {
            text-decoration: none; /* Quita el subrayado */
            color: inherit;        /* Usa el mismo color que el texto del párrafo */
        }

        a:hover {
            text-decoration: none;
            color: inherit;
        }

        ul {
            font-family: "Tahoma", sans-serif;
            color: #1d303b;
        }

        li {
            font-size: 17px;
        }

        .col-12 img {
            width: 100%;
            max-width: 600px;
            display: block;
            margin: 20px auto;
        }
         .footer-logo {
	margin-top: 10px;
	text-align: right; /* Alinea el logo a la derecha */
        }

        #footer {
    background: transparent;   /* elimina fondo blanco */
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-logo img {
	max-width: 300px; /* Tamaño del logo */
	height: auto;
      }

         pre {
    background-color:#D3D3D3;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: monospace;
    white-space: pre-wrap;
   }

     table {
            width: 100%;
            border-collapse: collapse;
        }
        table, th, td {
            border: 0px solid black;
        }
        th, td {
            padding: 8px;
            text-align: center;
        }
        th {
            background-color: #f2f2f2;
        }

        .imagen-izquierda {
    float: left;
    margin-right: 12px;
    width: 170px;
}
.cloud-section {
    text-align: center;
    margin: 80px auto;
}

.cloud-title {
    margin-bottom: 40px;
    font-size: 22px;
    letter-spacing: 2px;
}

/* GRID LIMPIO */
.cloud-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 800px;
    margin: auto;
}

/* TARJETAS SUAVES */
.cloud-grid div {
    background: #d0eee9;
    color: #00000079;
    padding: 14px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    cursor: default !important;
}

.cloud-grid div:hover {
    transform: translateY(-5px);
}
/* Animación suave tipo flotación */
@keyframes floatSoft {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Aplicar animación */
.cloud-grid div {
    animation: floatSoft 4s ease-in-out infinite;
}

/* Diferentes tiempos para que no se muevan igual */
.cloud-grid div:nth-child(1) { animation-delay: 0s; }
.cloud-grid div:nth-child(2) { animation-delay: 0.5s; }
.cloud-grid div:nth-child(3) { animation-delay: 1s; }
.cloud-grid div:nth-child(4) { animation-delay: 1.5s; }
.cloud-grid div:nth-child(5) { animation-delay: 2s; }
.cloud-grid div:nth-child(6) { animation-delay: 2.5s; }
.cloud-grid div:nth-child(7) { animation-delay: 3s; }
.cloud-grid div:nth-child(8) { animation-delay: 3.5s; }

/* carrusel */

body {
    background: linear-gradient(135deg, hsl(69, 66%, 77%), rgb(234, 245, 133));
    font-family: Arial, sans-serif;
}

.carousel-wrapper {
    width: 900px;
    margin: 80px auto;
    text-align: center;
    position: relative;
}

.carousel-viewport {
    height: 450px;
    overflow: hidden;
    border-radius: 40px;
}

.carousel-track {
    transition: transform 0.6s ease;
}

.slide {
    height: 450px;
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(8, 8, 8, 0.4);
}

/* estructura imagen + texto */

.slide-contenido{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:40px;
}

.slide-contenido img{
    width:500px;
    height:350px;
    object-fit:contain;
    display:block;
    margin:auto;
}

/* texto */

.slide h4{
    font-size:18px;
    margin-bottom:10px;
}

.slide p{
    font-size:14px;
    line-height:1.4;
    max-width:350px;
}

.slide ol{
    font-size:14px;
    text-align:left;
    max-width:350px;
    margin:10px auto;
}

/* botones */

.btn-carrusel {
    width:30px;
    height:60px;
    background-color:#080808;
    display:grid;
    place-items:center;
    position:relative;
    cursor:pointer;
}

.btn-carrusel::before {
    content:"▲";
    position:absolute;
    top:8px;
    font-size:12px;
}

.btn-carrusel::after {
    content:"▼";
    position:absolute;
    bottom:8px;
    font-size:12px;
}

.btn-carrusel:focus {
    outline:none;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.wrapper {
    background: transparent;
    width: 85%;
    max-width: 3000px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 20px;

    border: 2px solid rgba(7, 6, 6, 0.5); /* contorno */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}



/* fondo burbujas */

.bubbles{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    pointer-events:none;
    overflow:hidden;
    z-index:-1;
}

.bubbles span{
    position:absolute;
    bottom:-150px;
    width:40px;
    height:40px;
    background:rgba(248, 92, 19, 0.4);
    border-radius:50%;
    animation: rise 15s infinite;
}

.bubbles span:nth-child(1){left:10%;animation-duration:12s;}
.bubbles span:nth-child(2){left:20%;animation-duration:18s;width:50px;height:50px;}
.bubbles span:nth-child(3){left:35%;animation-duration:10s;}
.bubbles span:nth-child(4){left:50%;animation-duration:22s;width:65px;height:65px;}
.bubbles span:nth-child(5){left:65%;animation-duration:15s;}
.bubbles span:nth-child(6){left:75%;animation-duration:17s;width:48px;height:48px;}
.bubbles span:nth-child(7){left:85%;animation-duration:20s;}
.bubbles span:nth-child(8){left:40%;animation-duration:13s;width:32px;height:32px;}
.bubbles span:nth-child(9){left:55%;animation-duration:16s;}
.bubbles span:nth-child(10){left:70%;animation-duration:19s;width:26px;height:26px;}

@keyframes rise{
    0%{
        transform:translateY(0);
        opacity:0.5;
    }
    100%{
        transform:translateY(-1200px);
        opacity:0;
    }
}
