
        /* Estilos Generales */
        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            background-color: #f0f2f5;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }

        /* Contenedor de la Tarjeta */
        .card {
            background: #ffffff;
            width: 350px;
            padding: 40px 30px;
            border-radius: 30px; /* Bordes muy redondeados como en la foto */
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            text-align: center;
        }

        /* Estilo del Logo */
        .logo-container {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 0 10px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .logo-container img {
            width: 90%;
            height: auto;
        }

        /* Tipografía */
        h2 {
            color: #333;
            font-size: 1.6rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        p {
            color: #666;
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 30px;
        }

        strong {
            color: #444;
        }

        /* El Botón Azul */
        .btn-review {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #4285F4; /* Azul Google */
            color: white;
            text-decoration: none;
            padding: 18px 0;
            width: 100%;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 15px rgba(66, 133, 244, 0.3);
            border: none;
            cursor: pointer;
        }

        .btn-review:hover {
            background-color: #357ae8;
            transform: translateY(-2px);
            box-shadow: 0 12px 20px rgba(66, 133, 244, 0.4);
        }

        .btn-review span {
            margin: 0 10px;
        }

        /* Footer */
        .footer-text {
            margin-top: 35px;
            font-size: 0.75rem;
            color: #bbb;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .web-directory-link {
    margin-top: 30px;
    border-top: 1px solid #eee; /* Una línea sutil para separar */
    padding-top: 20px;
}

.web-directory-link p {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
}

.web-directory-link a {
    color: #1a73e8; /* Un azul un poco más vibrante */
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent; 
    transition: all 0.3s ease;
}

.web-directory-link a:active {
    border-bottom: 2px solid #1a73e8; /* Efecto visual al tocarlo */
    opacity: 0.8;
}

.web-directory-link a:hover {
    color: #0056b3;
    text-decoration: underline;
}
