
        html,body{
        margin: 0;
        font-family: Arial, Helvetica, sans-serif;
        background: linear-gradient(to bottom,#bec9eb, #89dae9, #afcdf7);
        width: 100%;
        }

        .slider {
        width: 100%;
        height: 200px;
        }

        .slider .slide {
        display: block; 
        width: 100%;
        height: 200%;
        }

        .slider img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
        display: block;
        }

        #titulo-animado {
        background-color: #f98f14; 
        color: white;
        font-size: 24px;
        font-weight: bold;
        text-align: center;
        padding: 15px 0;
        margin-top: -30px; 
        position: relative;
        z-index: 10;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }

        @keyframes mover {
        from { opacity: 0.3; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
        }

        .contenedor {
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 40px;
        padding: 50px 20px;
        margin: 0 auto;
        }

        .columna {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        height: 100%; 
        }

        .columna h2 {
        margin-top: 0;
        padding-bottom: 10px;
        font-size: 1.5em;
        }

        .img-responsive {
        width: 100%; 
        height: auto;
        border-radius: 5px;
        margin-bottom: 15px;
        }

        .formulario input[type="text"], 
        .formulario input[type="email"] {
         width: 100%;
        padding: 10px;
        margin: 5px 0 15px 0;
        box-sizing: border-box;
         border: 1px solid #ccc;
         border-radius: 4px;
         }

        .formulario button {
        background-color: #f68f58; /* Botón azul */
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        width: 100%;
        font-size: 1em;
        }

        .pie{
        background-color: #333; 
        color: white;
        text-align: center;
        padding: 20px 0;
        margin-top: 40px;
        width: 100%; 
        box-sizing: border-box; 
        position: relative;
        left: 0;
        right: 0
        }

        .pie p {
        margin: 5px 0;
        }

        .pie a {
        width: 30px; 
        height: 30px;
        margin: 10px 5px 0 5px; 
        filter: invert(100%); 
        color: black;
        }

        @media (max-width: 768px) {
        .contenedor {
        grid-template-columns: 1fr; 
        padding: 20px;
        }

        .columna {
        margin-bottom: 20px;
        }
        }