
        /* --- ESTILOS DEL CONTENEDOR PARA CENTRAR --- */
        .contenedor-centrado {
            display: flex;
            justify-content: center; /* Centra horizontalmente */
            align-items: center;    /* Centra verticalmente */
            background-color: #ffffff; /* Fondo blanco */
            padding: 25px 0;        /* Espacio superior e inferior reducido */
        }

        /* --- ESTILOS ESPECÍFICOS DEL BOTÓN --- */
        .btn-estilo-tarmex {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            background-color: #e5b3bb; /* Color rosa */
            color: #ffffff;          /* Texto blanco */
            border-radius: 50px;     /* Bordes redondeados en forma de píldora */
            padding: 15px 40px;      /* Espaciado interno del botón */
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .btn-estilo-tarmex:hover {
            background-color: #333333; /* Un gris muy oscuro al pasar el ratón */
            transform: translateY(-2px);
        }

        .btn-estilo-tarmex:active {
            transform: translateY(0px);
            box-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
    