* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #f4f7fb;
            color: #333;
        }

        /* HEADER */

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 50px;
            background: linear-gradient(90deg, #0b2a4a, #163f6b);
            color: white;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        nav a {
            color: white;
            text-decoration: none;
        }

        /* TITULO */

        .titulo {
            text-align: center;
            padding: 60px 20px;
        }

        .titulo h1 {
            font-size: 38px;
            color: #0b2a4a;
        }

        /* GRID CONTACTO */

        .contacto-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            padding: 40px 60px;
        }

        /* INFO */

        .info {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .info h3 {
            margin-bottom: 15px;
            color: #1e4f86;
        }

        .info p {
            margin-bottom: 10px;
        }

        /* FORMULARIO */

        .formulario {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .formulario h3 {
            margin-bottom: 20px;
            color: #1e4f86;
        }

        .formulario input,
        .formulario textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border-radius: 6px;
            border: 1px solid #ccc;
            font-family: Poppins;
        }

        .formulario textarea {
            height: 120px;
            resize: none;
        }

        .formulario button {
            background: #1e6acb;
            color: white;
            border: none;
            padding: 12px;
            width: 100%;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.3s;
        }

        .formulario button:hover {
            background: #0b2a4a;
        }

        /* MAPA */

        .mapa {
            padding: 0 60px 40px 60px;
        }

        iframe {
            width: 100%;
            height: 350px;
            border-radius: 10px;
            border: none;
        }

        /* FOOTER */

        footer {
            text-align: center;
            padding: 30px;
            background: #0b2a4a;
            color: white;
            margin-top: 40px;
        }

        /* RESPONSIVE */

        @media(max-width:900px) {

            .contacto-container {
                grid-template-columns: 1fr;
                padding: 20px;
            }

            .mapa {
                padding: 20px;
            }

            header {
                flex-direction: column;
                gap: 10px;
            }

            .titulo h1 {
                font-size: 28px;
            }

        }