* {
        margin: 0;
        padding: 0;
        /*box-sizing: border-box;*/
    }

    body {
        margin: 0;
        font-family: sans-serif;
        color: #444;
    }
    
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color:rgb(148, 48, 68);
        color: white;
        padding: 30px 50px;
        flex-wrap: wrap;
    }

    img {
        border-radius: 100%;
        filter: drop-shadow(0px 0px 40px rgba(194, 174, 174, 0.467));
    }

    .logo {
        height: 80px;
    }

    .titulos {
        text-align: center;
        flex: 1;
        min-width: 150px;
    }

    .titulos h1 {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }

    .titulos h2 {
        font-size: 1.2rem;
        font-weight: normal;
    }

    /* Ajuste en pantallas pequeñas */
    @media (max-width: 400px) {
        header {
            flex-direction: column;
            text-align: center;
        }
        .titulos {
            order: -1; /* Coloca los títulos arriba en móviles */
            margin-bottom: 10px;
        }
    }

    section {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        background-color: #ebe5d5;
    }

    h3{
        margin-top: 30px;
    }

    .contenedor {
        background-color: #ededed;
        padding: 20px;
        border-radius: 10px;
        width: 100%;
        max-width: 350px;
        box-shadow: 0px 0px 30px #0006;
        text-align: center;
    }

    .contenedor h3 {
        margin-bottom: 15px;
        font-size: 1.5rem;
        color: #333;
    }

    .contenedor input {
        width: 100%;
        padding: 10px;
        margin: 8px 0;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
        box-sizing: border-box;
        outline: rgba(0, 0, 0, 0);
    }

     .blueButton {
        cursor: pointer;
        display: inline-block;
        margin-top: 10px;
        padding: 10px 20px;
        background-color: #0077cc;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        outline: rgba(0, 0, 0, 0);
        border: none;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        transition: background 0.3s;
    }


    .contenedor button {
        cursor: pointer;
        display: inline-block;
        margin-top: 10px;
        padding: 10px 20px;
        background-color: #0077cc;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        outline: rgba(0, 0, 0, 0);
        border: none;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        transition: background 0.3s;
    }

    .contenedor button:hover {
        background-color: #005fa3;
    }

    /* Ajustes para pantallas pequeñas */
    @media (max-width: 500px) {
        .contenedor {
            padding: 15px;
        }
        .contenedor h3 {
            font-size: 1.2rem;
        }
        .contenedor a {
            padding: 8px 16px;
            font-size: 0.9rem;
        }
    }

    footer {
        background-color: #1c1c1c;
        color: white;
        font-size: 12px;
        padding: 30px 20px;
    }

    .footer-contenedor {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        max-width: 1100px;
        margin: auto;
        gap: 20px;
    }

    .columna {
        flex: 1;
        min-width: 250px;
    }

    .columna h4 {
        margin-bottom: 10px;
        border-bottom: 2px solid #555;
        padding-bottom: 5px;
    }

    .columna p {
        line-height: 1.5;
    }

    .social-btns {
        margin-top: 10px;
    }

    .social-btns a {
        display: inline-block;
        margin-right: 8px;
        padding: 10px 15px;
        border-radius: 5px;
        background-color: #0077cc;
        color: white;
        text-decoration: none;
        font-weight: bold;
        transition: background 0.3s;
    }

    .social-btns a:hover {
        background-color: #005fa3;
    }

    /* Ajustes para móviles */
    @media (max-width: 768px) {
        .footer-contenedor {
            flex-direction: column;
            text-align: center;
        }
        .social-btns a {
            margin-bottom: 5px;
        }
    }